/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 给body添加通用的样式 */
body {
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif';
  font-size: 16px;
  line-height: 1.5;
  color: #404040;
  background-color: #fff;
  font-weight: 400;
  -webkit-text-size-adjust:100% !important;
  text-size-adjust:100% !important;
  -moz-text-size-adjust:100% !important;
}

html {
  overflow-x: hidden;
}

html.full,
.full body {
  height: 100%;
}

@media (max-width: 1200px) {
  body {
    zoom: 0.9375;
  }
}

/*去除边框*/
fieldset,
img,
input,
button,
textarea {
  border: none;
  /*去除的蓝色小边框*/
  outline-style: none;
}

/*禁止表单域缩放*/
textarea {
  resize: none;
}

a {
  text-decoration: none;
  color: #404040;
  /* 移动端a标签点击会高亮，设置颜色为透明的 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 图片自适应 */
img {
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
}

/* 把所有的标题的样式全部重置了 */
/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
} */

/* 字体图标  i:icon   bootstrap*/
em,
i {
  font-style: normal;
}

.clearfix:before,
.clearfix:after {
  content: ' ';
  display: table;
}

.clearfix:after {
  clear: both;
}

.center,
.model.large.center {
  width: 1280px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.f-d_c {
  flex-direction: column;
}

.j-c_c {
  justify-content: center;
}

.j-c_s-b {
  justify-content: space-between;
}

.a-i_c {
  align-items: center;
}

.flex_1 {
  flex: 1;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-all {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p_r {
  position: relative;
}

.p_a {
  position: absolute;
}

.ui-mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  z-index: 555;
}
.ui-mask.show {
  display: flex;
}

[v-cloak] {
  display: none !important;
}

.header {
  background: #fff;
  height: 120px;
}

.bg_w {
  background: #fff;
}

.bg_g {
  background: #f6f6f6;
}

.wordbox {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wordbox1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* footer */
.footer {
  background: #e1e1e1;
  padding: 20px 0 32px;
  color: rgba(34, 34, 34, 0.6);
  flex-shrink: 0;
}

.footer a {
  font-size: 12px;
  color: rgba(34, 34, 34, 0.6);
}

.footer a:hover {
  color: rgba(34, 34, 34, 0.6);
  text-decoration: none;
}

.footer .footer-copy {
  text-align: center;
  margin: 20px 0 12px;
  font-size: 12px;
}

.footer .footer-bei {
  text-align: center;
}

.footer .footer-bei ul {
  display: flex;
  justify-content: center;
}

.footer .footer-bei ul li {
  margin: 0 6px;
  height: 37px;
  width: 97px;
}

.footer .footer-bei ul img {
  display: block;
  width: 100%;
  height: 100%;
}

/* header */
header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo a {
  display: flex;
  align-items: center;
}

header .logo .logo_name {
  height: 52px;
  margin-right: 20px;
}

header .logo .logo_line {
  width: 1px;
  height: 44px;
  background: #D7D7D7;
  margin-right: 20px;
}

header .logo .logo_text {
  font-size: 24px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
  line-height: 33px;
}

header .logo .logo_name img {
  height: 100%;
}

header .logo .temp_logo {
  display: inline-block;
  position: relative;
}

header .logo .temp_logo img {
  height: 70px;
}

header .logo .temp_logo:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  height: 50px;
  width: 1px;
  background: #999;
}

header .logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #0d3fc2;
  line-height: 33px;
}

header .search .search-form {
  display: flex;
  position: relative;
  /* width: 486px;
  height: 36px;
  border-radius: 18px;
  border: 1px solid #dcdcdc; */
  width: 215px;
  /* width: 306px; */
  height: 36px;
  border: 1px solid #DCDCDC;
  border-radius: 0;
}

header .search .search-form .index-select-type {
  width: 90px;
  height: 100%;
  border: 0;
  /* padding-left: 22px; */
  /* padding-bottom: 8px; */
  cursor: pointer;
  background: transparent;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;

  font-size: 14px;
  color: #747474;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  display: none;
}

header .search .search-form .index-select-type:after {
  width: 10px;
  height: 6px;
  content: '';
  margin-left: 4px;
  background: url(/public/img/pc/search-arrow.svg) no-repeat;
  background-size: 10px 6px;
  pointer-events: none;
}

header .search .search-form .index-select-box {
  width: 124px;
  background: #ffffff;
  box-shadow: 0px 1px 5px 0px rgba(169, 169, 169, 0.45);
  border-radius: 3px;
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 104%;
  z-index: 333;
  background: #fff;
  display: none;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
}

header .search .search-form .index-select-box span {
  display: block;
  box-sizing: border-box;
  width: 124px;
  padding: 8px 15px;
  /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
  border: none;
  outline: none;
  /*很关键：将默认的select选择框样式清除*/
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

header .search .search-form .index-select-box span:hover {
  background: #f4f4f4;
}

header .search .search-form input.search-text {
  width: 100%;
  height: 100%;
  padding: 0 9px;
  font-size: 16px;
  color: #333;
  line-height: 34px;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

header .search .search-form input.search-submit {
  /* width: 90px;
  height: 100%;
  background: #387ffc;
  border-radius: 0px 18px 18px 0px;
  cursor: pointer;
  font-size: 16px;
  color: #ffffff; */
  width: 51px;
  height: 100%;
  background: #387FFC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: Arial-BoldMT, Arial;
  font-weight: normal;
  color: #FFFFFF;
  border-radius: 0;
  flex-shrink: 0;
}

header .c-navs {
  margin-left: 40px;
  display: flex;
  align-items: center;
}

header .c-navs .c-nav {
  margin-left: 10px;
  font-size: 14px;
  color: #747474;
  line-height: 20px;
}

header .c-navs .c-nav img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

header .c-navs .c-nav .btn {
  cursor: pointer;
}

header .head {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 3px;
  cursor: pointer;
}

header .c-mobile {
  font-size: 14px;
  color: #333333;
  line-height: 20px;
  position: relative;
  padding: 10px 0 10px 10px;
  display: flex;
  align-items: center;
  z-index: 666;
}

header .c-mobile .mobile {
  margin-right: 8px;
  max-width: 60px;
}

header .c-mobile::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin: 0 2px 2px 0;
  /* margin-bottom: 4px;
  margin-left: 8px; */
}

header .c-mobile:hover::after {
  border-right: 1px solid #387ffc;
  border-bottom: 1px solid #387ffc;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  margin: 0 2px 0 0;
}

header .c-mobilebox {
  background: #ffffff;
  box-shadow: 0px 6px 15px 0px rgba(169, 169, 169, 0.34);
  border-radius: 5px;
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 100%;
  padding: 10px 0;
  font-size: 13px;
  color: #333333;
  line-height: 18px;
}

header .c-mobilebox .item {
  padding: 8px 18px;
  cursor: pointer;
  white-space: nowrap;
}

header .c-mobilebox .item:hover {
  color: #387ffc;
}

header .c-mobile:hover {
  color: #387ffc;
}

header .c-mobile:hover .c-mobilebox {
  display: flex;
}

.list-nav {
  height: 30px;
  /* height: 60px; */
}

.list-nav .list-nav-left {
  font-size: 16px;
  color: #7f7f7f;
  line-height: 22px;
}

.list-nav .list-nav-left a,
.list-nav .list-nav-left .a {
  margin-right: 40px;
  color: #7f7f7f;
  position: relative;
}

.list-nav .list-nav-left a + span,
.list-nav .list-nav-left .a + .last
{
  color: #000000;
  margin-right: 40px;
  position: relative;
}

.list-nav .list-nav-left a + a::before,
.list-nav .list-nav-left a + span::before,
.list-nav .list-nav-left .a + .a::before,
.list-nav .list-nav-left .a + .last::before {
  content: '>';
  color: #7f7f7f;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translate(-50%, -50%);
}

.list-nav .list-nav-right {
  font-size: 14px;
  color: #7f7f7f;
  line-height: 20px;
}

.list-nav .list-nav-right span {
  margin: 0 20px;
}

.page-list {
  padding-bottom: 40px;
  font-size: 14px;
  color: #5a5a5a;
}

.page-list .item {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  color: #5a5a5a;
}

.page-list .item.current {
  background: #387ffc;
  border: 1px solid #387ffc;
  color: #ffffff;
}

.page-list .item.last,
.page-list .item.next {
  color: #d9d9d9;
}

.page-list .skip {
  margin-left: 8px;
}

.page-list .skip input {
  width: 48px;
  height: 32px;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  margin: 0 8px;
  text-align: center;
}

.curriculum-banner {
  width: 986px;
  height: 398px;
  background: #e2e2e2;
  overflow: hidden;
  margin-bottom: 30px;
}

.curriculum-entrance {
  width: 263px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
  overflow: hidden;
  justify-content: space-between;
  align-self: stretch;
  margin-bottom: 30px;
  flex-shrink: 0;
  margin-left: 32px;
}

.curriculum-entrance .item {
  width: 130px;
  height: 130px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
}

.curriculum-entrance .item img {
  width: 66px;
  height: 66px;
  margin-bottom: 10px;
}

.curriculum-module {
  padding-bottom: 40px;
  position: relative;
}

.curriculum-module .module-title {
  font-size: 24px;
  font-weight: bold;
  color: #387ffc;
  line-height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.curriculum-module .module-title::before {
  content: '';
  margin-right: 12px;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ffffff 0%, #387ffc 100%);
}

.curriculum-module .module-title::after {
  content: '';
  margin-left: 12px;
  width: 100px;
  height: 3px;
  background: linear-gradient(270deg, #ffffff 0%, #387ffc 100%);
}

.curriculum-module .module-nav {
  position: absolute;
  right: 0;
  top: 47px;
  font-size: 14px;
  color: #818181;
  line-height: 20px;
}

.curriculum-module .module-content {
  display: flex;
  /* height: 348px; */
  margin-top: -10px;
  margin-left: -20px;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  align-self: stretch;
}

.curriculum-module .module-content .course-box {
  margin-top: 10px;
  margin-left: 20px;
}

.course-box {
  width: 413px;
  height: 164px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #eeeeee;
  display: flex;
  overflow: hidden;
  cursor: pointer;
}

.course-box:hover .title {
  color: #387ffc;
  text-decoration: underline;
}

.course-box img {
  width: 138px;
  height: 164px;
  object-fit: cover;
  flex-shrink: 0;
}

.course-box .content {
  display: flex;
  flex-direction: column;
  padding: 15px;
  flex: 1;
}

.course-box .content .tag-special {
  width: 57px;
  height: 18px;
  background: #e85307;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #ffffff;
  margin-left: 9px;
}

.course-box .title {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: 22px;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.course-box .desc {
  margin-top: 14px;
  flex: 1;
  font-size: 14px;
  color: #8f8f8f;
  line-height: 20px;
}

.course-box .money {
  font-size: 18px;
  font-weight: bold;
  color: #e85307;
  line-height: 25px;
}

.course-box .endtime {
  font-size: 14px;
  color: #e85307;
  line-height: 20px;
  margin-top: 14px;
  flex: 1;
}

.course-box .oldmoney {
  font-size: 14px;
  color: #8f8f8f;
  position: relative;
}

.course-box .oldmoney::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  background: #8f8f8f;
  transform: translate(0, -50%);
}

.course-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 -20px;
  padding-bottom: 40px;
  padding-top: 10px;
}

.course-list .course-box {
  width: 630px;
  height: 214px;
  padding: 20px;
  margin: 20px 0 0 20px;
}

.course-list .course-box img {
  width: 142px;
  height: 174px;
  border-radius: 12px;
  margin-right: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.course-list .course-box .content {
  padding: 0;
  font-size: 14px;
  color: #8f8f8f;
  line-height: 20px;
  flex: 1;
}

.course-list .course-box .course {
  /* padding: 0 11px; */
  width: 64px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #387ffc;
  line-height: 20px;
  border-radius: 17px;
  border: 1px solid #387ffc;
  margin-top: 12px;
  margin-bottom: 5px;
}

.curriculum-list {
  padding-top: 20px;
  /* padding-bottom: 30px; */
  background: #F5F7F9;
}

.curriculum-line {
  height: 1px;
  background: #eeeeee;
}

.curriculum-types {
  width: 1280px;
  /* height: 124px; */
  /* border-radius: 4px; */
  /* border: 2px solid #eeeeee; */
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  padding: 0 50px;
}

.curriculum-types .type + .type {
  border-top: 1px dashed #eeeeee;
}

.ke-list-bg {
  background: #F5F7F9;
}

.curriculum-types .type {
  display: flex;
  /* align-items: center; */
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #666666;
  line-height: 29px;
  flex: 1;
  padding: 20px 0;
}

.curriculum-types .head {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 21px;
  margin-right: 26px;
  flex-shrink: 0;
  margin-top: 4px;
  /* color: #7f7f7f;
  font-weight: bold;
  margin: 0 15px 0 20px; */
}

.curriculum-types .item.active {
  /* font-weight: bold; */
  color: #217DFF;
  background: #DBE8FD;
  cursor: initial;
}

.curriculum-types .items {
  margin: -20px 0 0 -26px;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.curriculum-types .showhide .morebox {
  display: flex;
}

.curriculum-types .morebox {
  width: 48px;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: none;
}


.curriculum-types .morebox .show-more {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #999999;
  line-height: 21px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 4px;
}

.curriculum-types .morebox .show-more::before {
  content: '展开';
  flex-shrink: 0;
  margin-right: 6px;
}

.curriculum-types .morebox .show-more::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid #999999;
  border-bottom: 1px solid #999999;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin: 0 2px 2px 0;
  flex-shrink: 0;
}

.curriculum-types .showhide .items {
  height: 98px;
  overflow: hidden;
}

.curriculum-types .showhide.active .items {
  height: initial;
}

.curriculum-types .showhide.active .morebox .show-more::before {
  content: '收起';
}

.curriculum-types .showhide.active .morebox .show-more::after {
  transform: rotate(225deg);
  margin: 2px 2px 0 0;
}

.curriculum-types .item {
  height: 29px;
  padding: 0 16px;
  background: #F8F8F8;
  border-radius: 15px;
  margin-left: 26px;
  margin-top: 20px;
  cursor: pointer;
  display: block;
}

.curriculum-infos {
  display: flex;
  justify-content: space-between;
}

.curriculum-infos .img {
  width: 448px;
  height: 308px;
  background: #e2e2e2;
  flex-shrink: 0;
  margin-right: 40px;
  object-fit: contain;
}

.curriculum-infos .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  line-height: 33px;
}

.curriculum-infos .user {
  font-size: 14px;
  color: #8f8f8f;
  line-height: 20px;
  margin-top: 20px;
}

.curriculum-infos .user .ticket {
  font-size: 14px;
  color: #595959;
  line-height: 20px;
  display: flex;
  align-items: center;
  padding: 10px 0 10px 20px;
  margin: -10px 0;
  position: relative;
}

.curriculum-infos .user .ticket .names {
  max-width: 345px;
  -webkit-line-clamp: 1;
}

.curriculum-infos .user .ticket .names span::after {
  content: '，';
}

.curriculum-infos .user .ticket .names span:last-child::after {
  content: '';
}

.curriculum-infos .user .ticket .ticket-receive {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #ff4800;
  line-height: 20px;
  margin-left: 20px;
  cursor: pointer;
}

.curriculum-infos .user .ticket .icon {
  /* width: 38px; */
  padding: 0 4px;
  height: 20px;
  background: #ffe5e0;
  border-radius: 2px;
  font-size: 14px;
  color: #ff4800;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.curriculum-infos .user .ticket-all {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.curriculum-infos .user .ticket-all .red,
.curriculum-infos .user .ticket:hover .ticket-all {
  color: #fd3737;
}

.curriculum-infos .user .ticket-all::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid #595959;
  border-bottom: 1px solid #595959;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin: 0 3px 5px 6px;
  /* margin-bottom: 4px;
  margin-left: 8px; */
}

.curriculum-infos .user .ticket:hover .ticket-all::after {
  border-right: 1px solid #fd3737;
  border-bottom: 1px solid #fd3737;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  margin: 0 2px 0 6px;
}

.curriculum-infos .user .ticket .ticket-box {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 3px 5px 0px rgba(169, 169, 169, 0.49);
  border: 1px solid #f4f4f4;
  padding: 10px 20px;
  display: none;
}

.curriculum-infos .user .ticket:hover .ticket-box {
  display: flex;
}

.curriculum-infos .user .ticket .ticket-box .box-item + .box-item {
  margin-top: 10px;
}

.curriculum-infos .money {
  width: 792px;
  height: 50px;
  background: #f4f4f4;
  font-size: 14px;
  color: #8f8f8f;
  line-height: 20px;
  margin-top: 21px;
  padding: 4px 20px;
}

.curriculum-infos .money .value {
  font-size: 30px;
  font-weight: bold;
  color: #e85307;
  line-height: 42px;
}

.curriculum-infos .desc {
  font-size: 16px;
  color: #555555;
  line-height: 24px;
  flex: 1;
  margin-top: 20px;
}

.curriculum-infos .desc .check {
  color: #387ffc;
  cursor: pointer;
  display: none;
}

.curriculum-infos .btn {
  width: 166px;
  height: 49px;
  background: #ff0042;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 28px;
  cursor: pointer;
}

.curriculum-infos .btn2 {
  width: 166px;
  height: 49px;
  background: linear-gradient(98deg, #FF9C00 0%, #F96006 100%);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 28px;
  cursor: pointer;
}

.border-grey {
  height: 20px;
  background: #f6f6f6;
}

.curriculum-detail {
  border-top: 20px solid #f6f6f6;
}

.icons-box.noboard {
  border: none;
}

.special-tags {
  display: flex;
  border-bottom: 1px solid #F5F7F9;
}

.special-tags li {
  /* width: 110px; */
  padding: 0 30px;
  height: 84px;
  /* background: #ffffff; */
}

.special-tags li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #666666;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.special-tags li.active a {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387FFC;
}

.special-tags li:hover a {
  color: #387FFC;
}


.special-tags li.active a::after {
  content: '';
  display: block;
  width: 37px;
  height: 3px;
  background-color: #387FFC;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
}

.special-tags.full li.active a::after {
  width: 100%;
}

.content-left {
  width: 960px;
}

.content-right {
  width: 300px;
}

.HIDE {
  display: none;
}

.curriculum-teacher {
  width: 300px;
  /* height: 213px; */
  background: #f7f7f7;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.curriculum-teacher + .curriculum-teacher {
  margin-top: 10px;
}

.curriculum-teacher img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  background: #e2e2e2;
  margin-right: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.curriculum-teacher .title {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: 22px;
}

.curriculum-teacher .desc {
  font-size: 14px;
  color: #555555;
  line-height: 21px;
  margin-top: 11px;
  white-space: pre-line;
}

.curriculum-buy {
  margin-top: 1px;
  position: relative;
  width: 300px;
  height: 354px;
}

.curriculum-buy .title {
  position: absolute;
  left: 50%;
  top: 23px;
  transform: translateX(-50%);
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 24px;
}

.curriculum-buy .desc {
  position: absolute;
  left: 0;
  top: 71px;
  width: 100%;
  padding: 0 20px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #3C3C3C;
  line-height: 27px;
  white-space: pre-line;
  box-sizing: border-box;
}


.curriculum-course {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 -20px;
}

.curriculum-course-box {
  display: flex;
  flex-direction: column;
  width: 140px;
  margin: 10px 0 10px 20px;
}

.curriculum-course-box .img {
  width: 140px;
  height: 166px;
  background: #e2e2e2;
  border-radius: 4px;
  overflow: hidden;
  object-fit: cover;
}

.curriculum-course-box .title {
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  line-height: 20px;
  margin-top: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.curriculum-course-box .desc {
  font-size: 14px;
  color: #8f8f8f;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-top: 12px;
}

.curriculum-course-box .money {
  font-size: 18px;
  font-weight: bold;
  color: #e85307;
  line-height: 25px;
  margin-top: 12px;
}

.curriculum-file {
  display: flex;
  flex-direction: column;
}

.curriculum-file .file-box {
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 30px;
  border-bottom: 1px solid #F5F7F9;
}

.curriculum-file .file-box .img {
  width: 22px;
  height: 22px;
  overflow: hidden;
  margin-right: 22px;
  flex-shrink: 0;
}

.curriculum-file .file-box .title {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 21px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.curriculum-file .file-box .desc {
  height: 21px;
  background: #F2F2F2;
  border-radius: 4px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #8F8F8F;
  align-self: start;
  flex-shrink: 0;
}

.curriculum-file .file-box .btn {
  width: 71px;
  height: 30px;
  background: #FCE7E7;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #D9001B;
  cursor: pointer;
  margin-left: 20px;
}

.curriculum-nocomment {
  height: 395px;
  font-size: 18px;
  color: #616060;
  line-height: 25px;
}

.curriculum-nocomment img {
  width: 236px;
  height: 139px;
  margin-bottom: 11px;
}

.curriculum-comment {
  display: flex;
  flex-direction: column;
  padding: 0 30px 30px;
}

.curriculum-comment .box {
  height: 98px;
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #F3F3F3;
}

.curriculum-comment .box .info1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.curriculum-comment .box .info2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.curriculum-comment .box .head {
  width: 46px;
  height: 46px;
  background: #e2e2e2;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
}

.curriculum-comment .box .name {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #8F8F8F;
  line-height: 16px;
}

.curriculum-comment .box .time {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #7F7F7F;
  line-height: 15px;
}

.curriculum-comment .box .chapter {
  padding: 0 8px;
  height: 21px;
  background: #F2F2F2;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #8F8F8F;
  flex-shrink: 0;
}

.curriculum-comment .box .desc {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 15px;
}

.curriculum-comment .more-box {
  height: 40px;
  background: #f4f4f4;
  font-size: 14px;
  color: #8f8f8f;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  cursor: pointer;
}

.curriculum-comment .more-box .arrow-bottom {
  width: 8px;
  height: 8px;
  border-right: 1px solid #8f8f8f;
  border-bottom: 1px solid #8f8f8f;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-bottom: 4px;
  margin-left: 10px;
}

.comment-tabs {
  width: 950px;
  height: 100px;
  background: linear-gradient(180deg, #F9F9F9 0%, #FDFDFD 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.comment-tabs .icon {
  width: 100px;
  height: 71px;
  position: absolute;
  right: 63px;
  bottom: 0;
}

.comment-tabs .text {
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.comment-tabs .text .text1 {
  font-size: 30px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387FFC;
  line-height: 40px;
}

.comment-tabs .text .text2 {
  margin-top: 1px;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #387FFC;
  line-height: 24px;
}

.comment-tabs .tabs,
.comment-tabs .range {
  display: flex;
  align-items: center;
}

.comment-tabs .tabs {
  height: 40px;
  border-left: 1px solid #E3E3E3;
}

.comment-tabs .tabs .item {
  padding: 0 14px;
  height: 40px;
  background: #EEEEEE;
  border-radius: 20px;
  line-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #555555;
  margin-left: 40px;
  cursor: pointer;
}

.comment-tabs .tabs .item.active {
  background: #387ffc;
  color: #ffffff;
  cursor: default;
}

.comment-tabs .range .item {
  font-size: 14px;
  color: #555555;
  line-height: 21px;
  margin-left: 20px;
  cursor: pointer;
}

.comment-tabs .range .item.active {
  font-weight: bold;
  color: #387ffc;
  cursor: default;
}

.fix-comment {
  position: fixed;
  z-index: 55;
  width: 100%;
  height: 60px;
  padding: 10px 0;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  background: #ffffff;
  border-top: 1px #c3d8ff solid;
  transition: 0.2s;
}

.fix-comment .center {
  padding-left: 150px;
}

.fix-comment .comment-box {
  width: 810px;
}

.fix-comment .comment-box .comment-inputarea {
  /* width: 660px; */
  flex: 1;
  /* min-height: 40px; */
  background: #ffffff;
  border: 1px solid #d7d7d7;
  padding: 10px;
  border-radius: 4px;
  margin-right: 10px;
}

.fix-comment .comment-box .nickname {
  color: #000000;
  font-weight: bold;
  margin-right: 20px;
}

.fix-comment .comment-box .comment-input {
  flex: 1;
  font-size: 16px;
}

.fix-comment .comment-box .comment-submit {
  width: 100px;
  height: 40px;
  background: #327afa;
  color: #ffffff;
  font-weight: bold;
  border-radius: 4px;
}

.topic-comment {
  border-top: 1px #c3d8ff solid;
  margin-top: 10px;
}

.topic-comment .title {
  height: 58px;
  line-height: 58px;
  font-size: 16px;
  font-weight: bold;
  color: #387ffc;
}

.topic-comment .topic-textarea {
  width: 810px;
  height: 120px;
  border: 1px solid #d7d7d7;
  position: relative;
}

.topic-comment .topic-textarea textarea {
  width: 810px;
  height: 120px;
  padding: 10px 10px 30px;
  background: none;
  font-size: 16px;
  line-height: 22px;
}

.topic-comment .editword {
  position: absolute;
  right: 33px;
  bottom: 5px;
  font-size: 14px;
  color: #8F8F8F;
  line-height: 20px;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.topic-comment .comment-submit {
  width: 280px;
  height: 40px;
  background: #387ffc;
  border-radius: 4px;
  margin-left: 530px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 11px;
}

.paycount-content {
  width: 1280px;
  /* height: 590px; */
  background: #ffffff;
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 0 20px 30px;
}

.paycount-content .content-title {
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
}

.paycount-content .content-title .title {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #373737;
  border-bottom: 2px solid #387ffc;
}

.paycount-content .box-goods {
  padding: 20px 0;
  display: flex;
}

.paycount-content .box-goods img {
  width: 98px;
  height: 120px;
  background: #e2e2e2;
  border-radius: 12px;
  overflow: hidden;
  object-fit: cover;
  margin-right: 20px;
}

.paycount-content .box-goods .title {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: 22px;
  -webkit-line-clamp: 1;
}

.paycount-content .box-goods .money {
  font-size: 18px;
  font-weight: bold;
  color: #fe5824;
  line-height: 25px;
}

.paycount-content .box-paytype {
  /* height: 139px; */
  padding: 20px;
  border-radius: 1px;
  border: 2px solid #eeeeee;
}

.paycount-content .box-paytype .item + .item {
  margin-top: 20px;
}

.paycount-content .box-paytype .title {
  font-size: 16px;
  font-weight: bolf;
  color: #373737;
  line-height: 24px;
  width: 93px;
}

.paycount-content .box-paytype .text1 {
  font-size: 14px;
  color: #373737;
  line-height: 20px;
  cursor: pointer;
}

.paycount-content .box-paytype .address {
  font-size: 14px;
  color: #555555;
  line-height: 24px;
  height: 56px;
}

.paycount-content .box-paytype .wechat {
  width: 165px;
  height: 56px;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #787878;
  line-height: 25px;
  position: relative;
  cursor: pointer;

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Chrome/Safari/Opera */
  -khtml-user-select: none; /* Konqueror */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
  not supported by any browser */
}

.paycount-content .box-paytype .wechat.selected {
  border: 2px solid #387ffc;
}

.paycount-content .box-paytype .wechat .selected {
  display: none;
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 37px;
  height: 32px;
}

.paycount-content .box-paytype .wechat.selected .selected {
  display: block;
}

.paycount-content .box-paytype .wechat .icon {
  width: 35px;
  height: 30px;
  margin-right: 10px;
}

.paycount-content .box-paytype .alert {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  font-size: 14px;
  color: #787878;
  line-height: 20px;
}

.paycount-content .box-paytype .alert img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.paycount-content .box-rules {
  width: 1240px;
  height: 93px;
  background: #f7f7f7;
  padding: 21px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  color: #555555;
  line-height: 24px;
  margin-top: 20px;
}
.paycount-content .box-rules .title {
  font-weight: bold;
  color: #373737;
  line-height: 18px;
}

.paycount-content .pay-redbtn {
  width: 166px;
  height: 49px;
  background: #ff0042;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 28px;
  margin: 30px auto 0;
  cursor: pointer;
}

.order-ticket {
  width: 601px;
  max-height: 542px;
  background: #f2f3f4;
  border-radius: 22px;
  position: relative;
  padding-bottom: 22px;
}

.order-ticket-content {
  /* overflow-y: scroll;
  overflow-x: hidden; */
  overflow: hidden;
}

.order-ticket-title {
  font-size: 20px;
  font-weight: bold;
  color: #373737;
  line-height: 28px;
  height: 68px;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.order-ticket .close-btn {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 0;
  top: -46px;
  pointer-events: none;
}

.order-ticket .ticket-no {
  height: 40px;
  background: #ffffff;
  box-shadow: 0px 3px 5px 0px rgba(169, 169, 169, 0.2);
  border-radius: 10px;
  margin: 0 20px;
  padding: 0 12px 0 19px;
}

.order-ticket .tickets {
  margin: 4px 0 0 10px;
  position: relative;
  height: 327px;
  overflow: hidden;
}

.order-ticket .tickets ul {
  display: flex;
  flex-wrap: wrap;
}

.order-ticket .ticket {
  width: 280px;
  height: 101px;
  display: block;
  margin: 12px 0 0 7px;
}

#wrapper ul {
  position: absolute;
  z-index: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* width: 100%; */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}

.order-ticket .ticket .bg {
  width: 280px;
  height: 101px;
  z-index: 111;
}

.order-ticket .ticket .content {
  width: 280px;
  height: 101px;
  z-index: 222;
}

.order-ticket .ticket .content .box1 {
  width: 100%;
  height: 69.5px;
}

.order-ticket .ticket .content .box2 {
  width: 100%;
  height: 31.5px;
  padding: 0 23px;
  font-size: 12px;
  color: #7e7c7c;
}

.flex_s {
  flex-shrink: 0;
}

.order-ticket .ticket.grey span,
.order-ticket .ticket.grey .money {
  color: #adafb2 !important;
}

.order-ticket .ticket .content .box1 .money {
  font-size: 26px;
  font-weight: bold;
  color: #fe5824;
  margin-left: 23px;
  line-height: 26px;
  display: flex;
  align-items: center;
}

/* .order-ticket .ticket .content .box1 .money span:first-child {
  font-size: 0.3rem;
  margin-right: -0.25rem;
} */

.order-ticket .ticket .content .box1 .howuse {
  flex: 1;
  height: 40px;
  font-size: 14px;
  line-height: 20px;
  color: #323232;
  margin-left: 20px;
}

.order-ticket .ticket .content .box1 .howuse span:last-child {
  font-size: 12px;
  line-height: 17px;
  color: #a8a8a8;
}

.radio {
  width: 14px;
  height: 14px;
  position: relative;
}

.radio input[type='radio'],
.radio input[type='checkbox'] {
  position: absolute;
  width: 0;
  height: 0;
}

.radio input[type='radio']:after,
.radio input[type='checkbox']:after {
  content: '';
  width: 14px;
  height: 14px;
  position: absolute;
  z-index: 100;
  left: 0;
  top: 0;
  border: 1px solid #cecfd0;
  border-radius: 50%;
  box-sizing: border-box;
}

.radio input[type='radio']:checked:after,
.radio input[type='checkbox']:checked:after {
  background: #387ffc;
  border-radius: 50%;
  border: none;
  width: 14px;
  height: 14px;
}

.radio .selected {
  width: 5px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;

  position: absolute;
  left: 53%;
  top: 44%;
  transform: translate(-50%, -50%) rotate(45deg);
  display: none;
  z-index: 222;
}

.radio input[type='radio']:checked + .selected,
.radio input[type='checkbox']:checked + .selected {
  display: block;
}

.order-ticket .ticket .content .box1 .radio {
  margin-right: 12px;
}

.order-ticket .late-box {
  margin-top: 0.4rem;
  font-size: 0.28rem;
  color: #7e7c7c;
  width: 100%;
}

.order-ticket .late-box .line {
  width: 0.34rem;
  height: 1px;
  margin: 0 0.35rem;
  position: relative;
  background: #7e7c7c;
}

.order-ticket .late-box .line::after {
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background: #7e7c7c;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
}

.order-ticket .late-box .line.pointleft::after {
  left: 0;
}

.order-ticket .late-box .line.pointright::after {
  right: 0;
}

.order-ticket-no {
}

.order-ticket-no img {
  width: 318.4px;
  height: 220px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.order-ticket-confirm {
  margin: 20px auto 0;
  width: 166px;
  height: 49px;
  background: #387ffc;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

.address-select {
  width: 77px;
  height: 25px;
  border-radius: 4px;
  border: 1px solid #797979;
  display: flex;
  justify-content: center;
  cursor: pointer;
  /* align-items: center; */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 14px;
  color: #333333;
  line-height: 25px;
}

.order-address {
  width: 600px;
  /* height: 424px; */
  background: #ffffff;
  border-radius: 12px;
  padding-bottom: 30px;
}

.order-address .address-add {
  font-size: 16px;
  color: #387ffc;
  line-height: 22px;
  margin-right: 20px;
  cursor: pointer;
}

.order-address .address-add img {
  width: 17px;
  height: 17px;
  margin-right: 8px;
}

.order-address .address-items {
  margin-bottom: 10px;
  position: relative;
  padding: 0 20px;
}

.order-address .address-items .item {
  width: 560px;
  height: 125px;
  border-radius: 8px;
  border: 1px solid #d7d7d7;
  padding: 20px;
  font-size: 16px;
  color: #373737;
  line-height: 22px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.order-address .address-items .item .title {
  font-size: 18px;
  color: #373737;
  line-height: 25px;
}

.order-address .address-items .item .radio {
  margin-right: 20px;
}

.order-address .address-items .item .btn {
  width: 77px;
  height: 25px;
  border-radius: 4px;
  border: 1px solid #797979;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  margin-left: 10px;
  font-size: 14px;
  color: #797979;
  line-height: 25px;
  cursor: pointer;
}

.order-address .address-confirm {
  width: 90px;
  height: 36px;
  background: #387ffc;
  border-radius: 5px;
  font-size: 16px;
  color: #ffffff;
  margin: 0 auto;
  cursor: pointer;
}

.order-address.inputs {
  width: 504px;
}

.order-address .address-inputs {
  padding: 0 20px;
}

.order-address .address-inputs .item {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-address .address-inputs .item .title {
  font-size: 16px;
  font-weight: bold;
  color: #373737;
}

.order-address .address-inputs .item input {
  width: 380px;
  height: 40px;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #d7d7d7;
  padding: 10px 12px;
  font-size: 14px;
  color: #000;
}

.order-address .address-inputs .item textarea {
  width: 380px;
  height: 100px;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #d7d7d7;
  font-size: 14px;
  color: #000;
  padding: 10px 12px;
}

.icon-addressadd {
  margin-right: 10px;
}

.dialog-default {
  min-width: 340px;
  background: #ffffff;
  border-radius: 12px;
  background: #ffffff;
  padding: 30px 0 0;
  overflow: hidden;
}

.dialog-img {
  width: 88px;
  height: 90px;
}

.dialog-text {
  font-size: 18px;
  color: #373737;
  line-height: 25px;
  margin-top: 20px;
  word-break: keep-all;
  white-space: pre-wrap;
  text-align: center;
}

.dialog-btns {
  margin-top: 30px;
  white-space: nowrap;
  word-break: keep-all;
}
.dialog-btns .btn1 {
  flex: 1;
  height: 55px;
  background: #357bf6;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  line-height: 55px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  /* align-items: center; */
}

.dialog-btns .btn2 {
  flex: 1;
  height: 55px;
  background: #ffffff;
  border-top: 1px solid #e3e3e3;
  font-size: 16px;
  font-weight: bold;
  color: #4b4b4b;
  line-height: 55px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.pay-result {
  padding: 30px 0 50px;
}

.pay-result img {
  width: 121px;
  height: 121px;
}

.pay-result .title {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  margin-top: 21px;
}

.pay-result.success .title {
  color: #373737;
}

.pay-result.fail .title {
  color: #fe5b29;
}

.pay-result .btns {
  margin-top: 20px;
}

.pay-result .btns .btn1 {
  width: 135px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #387ffc;
  margin-right: 30px;
  font-size: 18px;
  color: #387ffc;
  line-height: 38px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.pay-result .btns .btn2 {
  width: 135px;
  height: 38px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  line-height: 38px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.pay-result.success .btns .btn2 {
  background: #387ffc;
}

.pay-result.fail .btns .btn2 {
  background: #fe5b29;
}

.curriculum-commentbuy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #8f8f8f;
  line-height: 20px;
  margin-top: 30px;
}

.curriculum-commentbuy .price {
  font-size: 30px;
  font-weight: bold;
  color: #e85307;
  line-height: 42px;
  margin-left: 7px;
}

.curriculum-commentbuy .btn {
  width: 166px;
  height: 49px;
  background: #ff0042;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

.touch {
  cursor: pointer;
}

.fix-comment .curriculum-commentbuy {
  margin-top: 0;
  width: 810px;
}

.fix-comment .curriculum-commentbuy .btn {
  width: 212px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
}

.curriculum-period-info {
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  color: #555555;
  line-height: 21px;
}

.curriculum-period-info span + span::before {
  content: '|';
  margin: 20px;
}

.period-box {
  /* width: 810px; */
  background: #ffffff;
  /* border-radius: 8px; */
  /* border: 1px solid #eeeeee; */
  overflow: hidden;
  padding: 0 30px;
}

.period-container {
  /* padding: 20px; */
}

.period-box .arrow {
  display: flex;
  align-items: center;
}

.period-box .arrow::before {
  content: '收起';
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 21px;
  margin-right: 10px;
}

.period-box .arrow::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #a9a9a9;
  margin-right: 20px;
  margin-top: 5px;
  transition: 0.2s;
  transform: rotateZ(-180deg);
}

.period-box .title1 {
  height: 52px;
  background: #f3f3f3;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 24px;
  flex-shrink: 0;
  padding: 14px 20px;
  position: relative;
}

.period-box .sublength {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 21px;
}

.period-box .title1::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: #387FFC;
}

.period-box + .period-box {
  margin-top: 20px;
}

.period-box .live-btn {
  flex-shrink: 0;
}

.period-box .btn,
.period-box .live-btn span {
  width: 73px;
  height: 30px;
  background: linear-gradient(98deg, #FF9C00 0%, #F96006 100%);
  color: #FFFFFF;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  cursor: pointer;
}

.period-box.hidelist {
  height: 52px;
}

.period-box.hidelist .title1 .arrow::before {
  content: '展开';
}

.period-box.hidelist .title1 .arrow::after {
  transform: rotateZ(0deg);
}

.period-box .level2 {
  overflow: hidden;
}

.period-box .level2 + .level2 {
  /* margin-top: 16px; */
}

.period-box .title2 {
  height: 52px;
  display: flex;
  align-items: center;
  background: #ffffff;
  font-size: 16px;
  font-weight: bold;
  color: #555555;
  padding-left: 20px;
}

.period-box .iconfont {
  font-size: 22px;
}

.period-box .videoicon {
  width: 22px;
  height: 15px;
  margin-right: 10px;
  flex-shrink: 0;
  background: url('/public/img/pc/course-videoicon.png') no-repeat 0 0/100% 100%;
}

.period-box .status {
  width: 40px;
  height: 19px;
  background: #fee7d2;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  color: #ff8b21;
  margin-left: 14px;
  flex-shrink: 0;
}

.period-box .level2.hidelist .arrow::before {
  content: '展开';
}

.period-box .level2.hidelist .arrow::after {
  transform: rotateZ(0deg);
}

.period-box .level2.hidelist {
  height: 52px;
}

.period-box .level3 {
  cursor: pointer;
  height: 64px;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.period-box .level3 .title {
  font-size: 16px;
  color: #555555;
  line-height: initial;
}

.period-box .live-btn .goplay {
  background: #FCE7E7;
  color: #D9001B;
}

.period-box .live-btn .hassub {
  background: #DDDFE8;
  color: #FFFFFF;
}

.period-box .live-btn .gosub {
  background: #FCE7E7;
  color: #D9001B;
} 

.period-box .live-btn .replay {
  background: #FCE7E7;
  color: #D9001B;
}

.period-box .live-status {
  width: 70px;
  height: 19px;
  background: #FEE7D2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 12px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #FF8B21;
  flex-shrink: 0;
}

.period-box .live-status::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  background: url('/public/img/pc/icon-livetime.png') no-repeat 0 0/100% 100%;
}

.period-box .live-status.play::before {
  width: 13px;
  height: 10px;
  background: url('/public/img/pc/icon-live.png') no-repeat 0 0/100% 100%;
}

.period-box .live-status.end {
  background: #F3F3F3;
  color: #878B93;
}

.period-box .live-status.end::before {
  width: 10px;
  height: 10px;
  background: url('/public/img/pc/icon-liveend.png') no-repeat 0 0/100% 100%;
}


.period-box .live-time {
  font-size: 14px;
  color: #8F8F8F;
  margin-left: 20px;
  flex-shrink: 0;
  margin-right: 103px;
}

.period-box .level3 + .level3 {
  /* margin-top: 16px; */
}

.detail-icon.code:hover .default {
  display: none;
}

.detail-icon.code:hover .active {
  display: block;
}

.detail-icon.code {
  position: relative;
  cursor: initial;
}

.detail-icon.code .curriculum-mcode {
  display: none;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  width: 172px;
  height: 184px;
  /* padding: 22px 24px; */
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translate(-50%, -100%);
  background: url('/public/img/pc/course-codebg.png') no-repeat 0 0/100% 100%;
  font-size: 14px;
  color: #555555;
  line-height: 21px;
}

.detail-icon.code:hover .curriculum-mcode {
  display: flex;
}

.detail-icon img.curriculum-mcodeimg {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

/* 此段样式应用在learn系统的学习页 */
.curriculum-infos.learn .img {
  width: 156px;
  height: 190px;
  margin-right: 37px;
}

.curriculum-learn {
  width: 1280px;
  height: 90px;
  margin-top: 18px;
  background: url('/public/img/pc/course-learn.png') no-repeat 0 0/100% 100%;
  display: flex;
  align-items: center;
}

.curriculum-learn .count {
  margin-left: 50px;
  padding: 20px 0 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
}

.curriculum-learn .count .value {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  line-height: 24px;
  margin-bottom: 9px;
}

.curriculum-learn .count + .curriculum-learn .count {
  margin-left: 70px;
}

.curriculum-learn .last {
  width: 765px;
  padding: 10px 12px;
  background: #7db5fd;
  border-radius: 4px;
  margin-left: 70px;
  font-size: 14px;
  color: #ffffff;
  line-height: 21px;
}

.curriculum-learn .btn {
  width: 143px;
  height: 41px;
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #387ffc;
}

#curriculum-success {
  justify-content: center;
  align-items: center;
}
.curriculum-success {
  width: 340px;
  /* height: 275px; */
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  color: #373737;
  line-height: 25px;
  overflow: hidden;
}

.curriculum-success img {
  margin-top: 23px;
  width: 96px;
  height: 122px;
  margin-bottom: 12px;
}

.curriculum-success .btn {
  width: 340px;
  height: 55px;
  margin-top: 30px;
  background: #387ffc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

.course.swiper-pagination {
  bottom: 30px;
  text-align: right;
  padding-right: 26px;
}

.course.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background: #fff;
  box-shadow: 0px 6px 22px 0px rgba(169, 169, 169, 0.2);
  opacity: 1;
}

.course.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #000;
  opacity: 0.5;
  box-shadow: 0px 6px 22px 0px rgba(169, 169, 169, 0.2);
  margin-left: 14px;
}

.dialog-ticket {
  padding: 20px 15px 37px 20px;
  min-width: 449px;
  background: #f2f3f4;
  border-radius: 13px;
  position: relative;
}

.dialog-ticket .d-title {
  font-size: 20px;
  font-weight: bold;
  color: #373737;
  line-height: 28px;
}

.dialog-ticket .d-close {
  width: 60px;
  height: 60px;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.dialog-ticket .d-close img {
  width: 16px;
  height: 16px;
}

#dialog-ticket {
  /* display: flex; */
  z-index: 666;
}

.course-tickets2 {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
  width: 420px;
  height: 282px;
  overflow: hidden;
  position: relative;
  /* overflow-y: auto;
  overflow-x: hidden; */
}

.course-tickets2 .item {
  width: 410px;
  height: 84px;
  display: flex;
  align-items: center;
}

.course-tickets2 .item + .item {
  margin-top: 15px;
}

.course-tickets2 .item .box1 {
  width: 107px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
}

.course-tickets2 .item .box2 {
  flex: 1;
  height: 84px;
  display: flex;
  justify-content: space-between;
  color: #232323;
  padding: 17px 16px;
  position: relative;
}

.course-tickets2 .item .money {
  display: flex;
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
  line-height: 30px;
}

.course-tickets2 .item .money .icon {
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: flex-end;
}

.course-tickets2 .item .title {
  font-size: 16px;
  color: #323232;
  line-height: 22px;
}

.course-tickets2 .item .time {
  font-size: 12px;
  color: #a8a8a8;
  line-height: 17px;
}

.course-tickets2 .item .box2 .receive {
  width: 66px;
  height: 28px;
  background: linear-gradient(270deg, #fe5824 0%, #ff914a 100%);
  border-radius: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #ffffff;
  align-self: center;
  cursor: pointer;
}

.course-tickets2 .item .box2 .received {
  width: 62px;
  height: 48px;
  position: absolute;
  right: 16px;
  top: 17px;
}

.curriculum-list .list-nav {
  height: 70px;
}

.order-ticket .ticket .content .box1 .canuse {
  font-size: 12px;
  line-height: 12px;
  margin-left: 23px;
  margin-top: 2px;
  color: #fe5824;
}

.course-index.swiper-container {
  height: 398px;
}

.c-nav-app {
  position: relative;
}

.download-code {
  width: 156px;
  height: 156px;
  background: #FFFFFF;
  box-shadow: 0px 1px 4px 0px rgba(169, 169, 169, 0.38);
  border-radius: 3px;
  display: none;
  position: absolute;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
  z-index: 444;
  flex-direction: column;
  align-items: center;
}

.c-nav-app:hover .download-code {
  display: flex;
}

.download-code .text1 {
  font-size: 12px;
  color: #333333;
  line-height: 17px;
  margin-top: 9px;
}

.download-code .text2 {
  font-size: 12px;
  color: #777777;
  line-height: 17px;
  margin-top: 8px;
}

.c-nav .download-code .img {
  width: 88px;
  height: 88px;
  margin-top: 9px;
}

.gift-content {
  position: relative;
  width: 100%;
  height: 1487px;
}

.gift-content .center2 {
  width: 1920px;
  height: 1487px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.gift-bg {
  width: 1920px;
  height: 1487px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.gift-model {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
}

.gift-model .m-title {
  width: 1100px;
  height: 61px;
  background: linear-gradient(90deg, #FA512B 0%, #ED3231 47%, #F1441B 100%);
  border-radius: 6px 6px 0 0;
  border: 2px solid;
  border-image: linear-gradient(90deg, rgba(245, 122, 121, 1), rgba(246, 157, 168, 1), rgba(243, 104, 104, 1)) 2 2;
  overflow: hidden;

  font-size: 26px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FEF7E6;
  line-height: 35px;
  padding-left: 30px;
  display: flex;
  align-items: center;
}

.gift-model .m-title::before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background: url('/public/img/pc/gift-icon.png') no-repeat 0 0/100% 100%;
  margin-right: 30px;
}

.gift-model .m-content {
  width: 1100px;
  flex: 1;
  background: #FFFFFF;
  margin-top: -2px;
}

.gift-model.gift1 { 
  margin-top: 389px;
  height: 254px;
}

.gift-model.gift2 { 
  height: 292px;
  margin-top: 30px;
}

.gift-model.gift3 { 
  height: 331px;
  margin-top: 35px;
}

.gift-model.gift1 .m-title {
  background: linear-gradient(90deg, #EE3132 0%, #ED3231 47%, #EA4033 100%);
}

.gift-model.gift1 .m-content {
  padding: 30px 50px;
  display: flex;
  align-items: center;
}

.gift-ziliao {
  /* width: 485px; */
  flex: 1;
  height: 134px;
  background: #F7F7F7;
  border-radius: 8px;
  padding: 20px;
  display: flex;
}

.gift-ziliao + .gift-ziliao  {
  margin-left: 30px;
}

.gift-ziliao .img {
  width: 94px;
  height: 94px;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  object-fit: cover;
  margin-right: 20px;
  flex-shrink: 0;
}

.gift-ziliao .title {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  height: 48px;
}

.gift-ziliao .money {
  margin-top: 15px;
  font-size: 12px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  color: #E85307;
  line-height: 16px;
}

.gift-ziliao .money .value {
  font-size: 20px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  font-weight: bold;
  line-height: 26px;
}

.gift-ziliao .btn {
  width: 108px;
  height: 35px;
  background: linear-gradient(90deg, #FF724C 0%, #FF4B3C 100%);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  cursor: pointer;
}

.gift-model.gift2 .m-content {
  padding: 30px 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gift-ticket {
  display: flex;
  width: 431px;
  height: 172px;
  background: url('/public/img/pc/gift-ticket.png') no-repeat 0 0/100% 100%;
}

.gift-ticket .ticket-left {
  width: 112px;
  height: 100%;
  padding: 28px 45px;
  flex-shrink: 0;
  font-size: 22px;
  font-family: MicrosoftYaHei;
  color: #FEF7E6;
  line-height: 29px;
}

.gift-ticket .ticket-right {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gift-ticket .ticket-right .money {
  margin-top: 21px;
  font-size: 22px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 29px;
}

.gift-ticket .ticket-right .money .value {
  font-size: 67px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 67px;
}

.gift-ticket .ticket-right .desc {
  font-size: 28px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 37px;
  margin-top: 13px;
}

.gift-model.gift3 .m-content {
  padding: 30px 81px;
  display: flex;
  align-items: center;
}

.gift-course {
  /* width: 454px; */
  flex: 1;
  height: 210px;
  background: #F7F7F7;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  cursor: pointer;
}

.gift-course + .gift-course {
  margin-left: 30px;
}

.gift-course .img {
  width: 140px;
  height: 170px;
  overflow: hidden;
  object-fit: cover;
  margin-right: 21px;
  flex-shrink: 0;
}

.gift-course .title {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  flex-shrink: 0;
}

.gift-course .desc {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #919090;
  line-height: 24px;
  margin-top: 10px;
  flex: 1;
}

.gift-course .money {
  margin-top: 15px;
  font-size: 12px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  color: #E85307;
  line-height: 16px;
  flex-shrink: 0;
}

.gift-course .money .value {
  font-size: 20px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  font-weight: bold;
  line-height: 26px;
}

.gift-btn {
  width: 628px;
  height: 76px;
  background: linear-gradient(180deg, #FDE38F 0%, #F0C579 100%);
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  margin: 40px auto 0;
  cursor: pointer;
}

.gift-dialog {
  width: 368px;
  /* height: 254px; */
  background: #FFFFFF;
  border-radius: 13px;
  padding: 22px 30px 22px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gift-dialog .close {
  width: 63px;
  height: 64px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.gift-dialog .close img {
  width: 15px;
  height: 16px;
}

.gift-dialog .title {
  font-size: 24px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #F75E4A;
  line-height: 33px;
}

.gift-dialog .desc {
  font-size: 18px;
  color: #373737;
  line-height: 29px;
  white-space: pre-line;
  margin-top: 24px;
  text-align: center;
}

.gift-dialog .btn {
  width: 254px;
  height: 49px;
  background: #F75E4A;
  border-radius: 38px;
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 24px;
  cursor: pointer;
}

.gift-dialog .tip {
  font-size: 14px;
  color: #777777;
  line-height: 24px;
  margin-top: 20px;
  white-space: pre-line;
  text-align: center;
}

.course-subscribe {
  width: 662px;
  height: 606px;
  background: #FFFFFF;
  border-radius: 22px;
  overflow: hidden;
}

.course-subscribe .subscribe-top {
  width: 662px;
  height: 87px;
  background: #387FFC;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-subscribe .subscribe-top .title {
  font-size: 24px;
  font-family: SourceHanSansSC-Bold, SourceHanSansSC;
  font-weight: bold;
  color: #FFFFFF;
}

.course-subscribe .subscribe-top .close {
  display: block;
  width: 40px;
  height: 40px;
  background: url('/public/img/pc/icon-close.png') no-repeat 0 0/100% 100%;
  cursor: pointer;
}

.course-subscribe .subscribe-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-subscribe .subscribe-bottom .img {
  width: 148px;
  height: 111px;
  margin-top: 30px;
  display: block;
  background: url('/public/img/pc/course-subscribe.png') no-repeat 0 0/100% 100%;
}

.course-subscribe .subscribe-bottom .title {
  font-size: 24px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387FFC;
  line-height: 31px;
  margin-top: 30px;
}

.course-subscribe .subscribe-bottom .desc {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #373737;
  line-height: 24px;
  margin-top: 20px;
}

.course-subscribe .subscribe-bottom .time {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #A30115;
  line-height: 24px;
  margin-top: 10px;
}

.course-subscribe .advert {
  margin-top: 30px;
  width: 582px;
  border-top: 1px solid #F0F0F0;
  padding-top: 29px;
}

.course-subscribe .advert .ad-tip {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #387FFC;
  display: flex;
  align-items: center;
}

.course-subscribe .advert .ad-tip::before {
  content: '';
  display: block;
  width: 2px;
  height: 12px;
  background: #217DFF;
  margin-right: 9px;
}

.course-subscribe .advert .ad-box {
  margin-top: 20px;
  display: flex;
}

.course-subscribe .advert .ad-box .ad-img {
  width: 110px;
  height: 110px;
  margin-right: 20px;
}

.course-subscribe .advert .ad-box .ad-title {
  font-size: 18px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #373737;
  line-height: 25px;
}

.course-subscribe .advert .ad-box .ad-desc {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #7F7F7F;
  line-height: 24px;
  margin-top: 10px;
}

.course-subscribe .advert .ad-box .ad-name {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #7F7F7F;
  line-height: 24px;
  margin-top: 10px;
}

.course-subscribe .advert .ad-box .ad-name .blue {
  color: #387FFC;
}


/* 课程改版 */
.curriculum-entrance2 {
  width: 274px;
  height: 402px;
  margin-left: 20px;
  background-color: #ffffff;
  flex-shrink: 0;
}

.curriculum-entrance2 .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px;
  position: relative;
  cursor: pointer;
}

.curriculum-entrance2 .item + .item::after {
  content: '';
  display: block;
  width: 254px;
  height: 2px;
  border-top: 2px dashed #F4F6F8;
  position: absolute;
  right: 1px;
  top: 0;
}

.curriculum-entrance2 .title {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387FFC;
  line-height: 24px;
}

.curriculum-entrance2 .desc {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 21px;
  margin-bottom: 4px;
  width: 112px;
}

.curriculum-entrance2 .btn {
  width: 52px;
  height: 20px;
  background: #387FFC;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 14px;
  margin-top: 6px;
}

.curriculum-entrance2 .img { 
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}

.curriculum-live {
  height: 123px;
  background: #FFFFFF;
  box-shadow: 0 12px 8px 0 rgba(169,169,169,0.05);
  display: flex;
}


.curriculum-live .curriculum-live-item {
  width: 427px;
  padding: 28px 38px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.curriculum-live .curriculum-live-item + .curriculum-live-item::after {
  content: '';
  width: 1px;
  height: 42px;
  display: block;
  background: #EFEFF0;
  position: absolute;
  left: 0;
  top: 41px;
}

.ke-live-btn {
  width: 83px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  cursor: pointer;
}

.ke-live-btn.orange {
  background: linear-gradient(98deg, #FF9C00 0%, #F96006 100%);
  color: #FFFFFF;
}

.ke-live-btn.red {
  background: #FCE7E7;
  color: #D9001B;
}

.ke-live-btn.grey {
  background: #DDDFE8 !important;
  color: #FFFFFF !important;
}

.ke-live-btn.ban {
  pointer-events: none;
}

.curriculum-live .curriculum-live-item .head {
  width: 67px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 14px;
  position: relative;
  flex-shrink: 0;
}

.curriculum-live .curriculum-live-item .head img {
  /* width: 39px;
  height: 39px;
  border-radius: 50%;
  overflow: hidden; */
  width: 100%;
  height: 100%;
  display: block;
}

.curriculum-live .curriculum-live-item.live .head {
  border: 3px solid #217DFF;
}

.curriculum-live .curriculum-live-item.live .head::after {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background: url('/public/img/pc/new/icon-live.gif') no-repeat 0 0/100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.curriculum-live .curriculum-live-item .time {
  display: flex;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
  color: #387ffc;
}

.curriculum-live .curriculum-live-item .time .icon {
  width: 17px;
  height: 17px;
  margin-right: 6px;
  background: url('/public/img/pc/new/icon-time_blue.png') no-repeat 0 0/100% 100%;
}

.curriculum-live .curriculum-live-item.live .time .icon {
  background: url('/public/img/pc/new/icon-time_blue.png') no-repeat 0 0/100% 100%;
}

.curriculum-live .curriculum-live-item.live .time * {
  color: #387FFC !important;
}

.curriculum-live .curriculum-live-item .time .start {
  font-size: 20px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  line-height: 26px;
}

.curriculum-live .curriculum-live-item .time .end {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 26px;
}

.curriculum-live .curriculum-live-item .ke-live-btn {
  width: 83px;
  height: 30px;
  flex-shrink: 0;
}

.curriculum-live .curriculum-live-item .title {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 24px;
  margin-bottom: 9px;
}

.keindex-module {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.keindex-module .module-title {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.keindex-module .module-title .title {
  font-size: 26px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  line-height: 35px;
  display: flex;
  align-items: center;
}

.keindex-module .module-title .title::before {
  content: '';
  display: block;
  width: 4px;
  height: 25px;
  background: #217DFF;
  margin-right: 5px;
}

.keindex-module .module-title .more {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #9498A2;
  line-height: 21px;
  cursor: pointer;
}

.keindex-module .module-title .more img {
  width: 18px;
  height: 18px;
  margin-left: 10px;
}

.keindex-module .module-content {
  margin-top: 30px;
}

.ke-live-item {
  width: 305px;
  height: 367px;
  background: #FFFFFF;
  box-shadow: 0px 6px 22px 0px rgba(169,169,169,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 26px 20px;
}

.ke-live-item + .ke-live-item {
  margin-left: 20px;
}

.ke-live-item .tag {
  width: 90px;
  height: 26px;
  background: linear-gradient(270deg, #FF8484 0%, #FF5B5A 100%);
  border-radius: 0px 0px 0px 13px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ke-live-item .tag::before {
  content: '';
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background: url('/public/img/pc/new/icon-time_white.png') no-repeat 0 0/100% 100%;
}

.ke-live-item.live .tag::before {
  width: 14px;
  height: 14px;
  background: url('/public/img/pc/new/icon-live.gif') no-repeat 0 0/100% 100%;
}

.ke-live-item .time {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 21px;
}

.ke-live-item .time img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.ke-live-item .title {
  margin-top: 14px;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 24px;
}

.ke-live-item .desc {
  margin-top: 14px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #7D808A;
  line-height: 23px;
}

.ke-live-item .teachers {
  display: flex;
  margin-top: 14px;
}

.ke-live-item .teachers .item {
  display: flex;
  flex-direction: column;
  width: 44px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #7D808A;
  line-height: 23px;
  margin-right: 20px;
}

.ke-live-item .teachers .item img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 10px;
  overflow: hidden;
}

.ke-live-item .info {
  padding-top: 20px;
  border-top: 1px solid #EFEFF0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ke-live-item .info .people {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #387FFC;
  line-height: 23px;
}

.ke-live-item.live .info .people0::after, 
.ke-live-item.end .info .people0::after {
  content: '已学习';
  color: #000000;
}

.ke-live-item.sub .info .people0::after, 
.ke-live-item.subend .info .people0::after {
  content: '预约';
  color: #000000;
}

.ke-limit-item {
  width: 305px;
  height: 340px;
  position: relative;
  float: left;
  margin-left: 20px;
  margin-top: 20px;
  cursor: pointer;
}

.keindex-module .module-content.clearfix {
  margin-left: -20px;
  margin-top: 10px;
}

.ke-limit-item .tag {
  width: 72px;
  height: 26px;
  background: linear-gradient(98deg, #FF9C00 0%, #F96006 100%);
  border-radius: 93px 0 0 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  position: absolute;
  right: 0;
  top: 10px;
}

.ke-limit-item .box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 305px;
  height: 170px;
  background: rgba(0,0,0,0.36);
  border-radius: 14px 14px 0 0;
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  padding: 20px 20px 18px;
  transition: .4s;
}

.ke-limit-item:hover .box {
  height: 340px;
  border-radius: 0;
  padding-top: 89px;
}


.ke-limit-item .box .time {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 21px;
}

.ke-limit-item .box .time img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.ke-limit-item .box .title {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 24px;
  margin-top: 10px;
}

.ke-limit-item .box .desc {
  margin-top: 10px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 23px;
  flex: 1;
}

.ke-limit-item .box .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.ke-limit-item .box .info .money {
  display: flex;
  align-items: center;
}

.ke-limit-item .box .info .money .new {
  font-size: 24px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  font-weight: bold;
  color: #FFFFFF;
  display: flex;
  align-items: flex-end;
  line-height: 24px;
  flex-shrink: 0;
}

.ke-limit-item .box .info .money .new::before {
  /*content: '¥';*/
  font-size: 14px;
  color: #FFFFFF;
  margin-right: 3px;
  line-height: 18px;
}

.ke-limit-item .box .info .money .old {
  position: relative;
  font-size: 12px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  color: #FFFFFF;
  line-height: 23px;
  margin-left: 8px;
  flex-shrink: 0;
}

.ke-limit-item .box .info .money .old::after {
  content: '';
  display: block;
  background: #FFFFFF;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.box .info .btn_buy {
  width: 91px;
  height: 32px;
  background: linear-gradient(98deg, #FF9C00 0%, #F96006 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  cursor: pointer;
}

.box .info .btn_learn {
  width: 91px;
  height: 32px;
  background: #FCE7E7;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #D9001B;
  cursor: pointer;
}

.ke-teacher-item {
  width: 256px;
  /* height: 300px; */
  display: flex;
  flex-direction: column; 
  cursor: pointer;
}

.ke-teacher-item img {
  width: 256px;
  height: 300px;
  object-fit: cover;
  background: linear-gradient(270deg, #FBFBFD 0%, #E9ECF2 100%);
}

.ke-teacher-item .info {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ke-teacher-item .info .title {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 24px;
  flex-shrink: 0;
}

.ke-teacher-item .info .desc,
.ke-teacher-item .info .description {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #9498A2;
  line-height: 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.keindex-module .module-banner {
  float: left;
  width: 630px;
  height: 370px;
  display: block;
  margin-top: 20px;
  margin-left: 20px;
  cursor: pointer;
}

.ke-open-item {
  width: 305px;
  height: 370px;
  position: relative;
  float: left;
  margin-left: 20px;
  margin-top: 20px;
  cursor: pointer;
}

.ke-open-item .img {
  width: 305px;
  height: 209px;
}

.ke-open-item .tag {
  width: 72px;
  height: 26px;
  background: linear-gradient(98deg, #FF9C00 0%, #F96006 100%);
  border-radius: 93px 0 0 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  position: absolute;
  right: 0;
  top: 10px;
}

.ke-open-item .tag-left {
  width: 199px;
  padding-left: 8px;
  height: 26px;
  background: linear-gradient(98deg, #E23F2E 0%, #FB7027 100%);
  border-radius: 0px 0px 19px 0px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 26px;
  position: absolute;
  left: 0;
  top: 0;
}

.ke-open-item .box {
  width: 305px;
  /* height: 170px; */
  background: #FFFFFF;
  box-shadow: 0px 6px 22px 0px rgba(169,169,169,0.2);
  display: flex;
  flex-direction: column;
  padding: 17px;
}

.ke-open-item .box .title {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 26px;
  height: 52px;
}

.ke-open-item .box .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 11px;
}

.ke-open-item .box .people {
  margin-top: 10px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 23px;
}

.ke-open-item .box .info .people  {
  margin-top: 0;
}

.ke-open-item .box .info .money {
  font-size: 18px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  font-weight: bold;
  color: #E85307;
  line-height: 23px;
  margin-right: 16px;
  display: flex;
  align-items: center;
}


.ke-open-item .box .info .money .new {
  font-size: 24px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  font-weight: bold;
  display: flex;
  align-items: flex-end;
  line-height: 24px;
  flex-shrink: 0;
}

/* .ke-open-item .box .info .money .new::before {
  content: '¥';
  font-size: 14px;
  font-family: MicrosoftYaHei;
  margin-right: 3px;
  line-height: 18px;
} */

.ke-open-item .box .info .money .old {
  position: relative;
  font-size: 12px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  color: #9498A2;
  line-height: 23px;
  margin-left: 8px;
  flex-shrink: 0;
  font-weight: initial;
}

.ke-open-item .box .info .money .old::after {
  content: '';
  display: block;
  background: #9498A2;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}


.ke-serve-item {
  width: 248px;
  height: 300px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.ke-serve-item + .ke-serve-item {
  margin-left: 10px;
}

.ke-serve-item .icon {
  width: 69px;
  height: 69px;
  position: absolute;
  left: 93px;
  top: 63px;
  transition: .4s;
}

.ke-serve-item .title {
  font-size: 22px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 29px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 147px;
  white-space: nowrap;
  transition: .4s;
}

.ke-serve-item .desc {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 21px;
  white-space: pre-line;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 191px;
  transition: .4s;
}

.ke-serve-item .mask {
  width: 100%;
  height: 100%;
  background: #3073E8;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transition: .4s;
}

.ke-serve-item .btn {
  width: 174px;
  height: 32px;
  border-radius: 20px;
  border: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 37px;
  top: 310px;
  transition: .4s;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
}

.ke-serve-item .btn-wechat .wechat {
  position: absolute;
  left: 50%;
  top: -5px;
  transform: translate(-50%, -100%);
  width: 161px;
  height: 169px;
  padding: 18px 17px 25px 18px;
  opacity: 0;
  transition: .4s;
  pointer-events: none;
}

.ke-serve-item .btn-wechat:hover .wechat {
  opacity: 1;
}

.ke-serve-item .btn:hover {
  background: #FFFFFF;
  color: #217DFF;
}

.ke-serve-item .btns {
  width: 212px;
  height: 74px;
  display: flex;
  justify-content: space-between;
  align-content: space-between;
  flex-wrap: wrap;
  position: absolute;
  left: 18px;
  top: 310px;
  transition: .4s;
}

.ke-serve-item .btns span {
  width: 101px;
  height: 32px;
  border-radius: 20px;
  border: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
}

.ke-serve-item .btns span:hover {
  background: #FFFFFF;
  color: #217DFF;
}

.ke-serve-item .code {
  width: 92px;
  height: 92px;
  position: absolute;
  left: 78px;
  top: 310px;
  transition: .4s;
}

.ke-serve-item:hover .mask {
  opacity: 0.78;
}

.ke-serve-item:hover .icon {
  top: 28px;
}

.ke-serve-item:hover .title {
  top: 97px;
}

.ke-serve-item:hover .desc {
  top: 136px;
}

.ke-serve-item:hover .btn {
  top: 215px;
}

.ke-serve-item:hover .code {
  top: 188px;
}

.ke-serve-item:hover .btns {
  top: 194px;
}

.ke-index-bottom {
  width: 100%;
  height: 777px;
  margin-top: 14px;
}

.ke-bottom-items {
  display: flex;
  padding-top: 31px;
}

.ke-bottom-item {
  flex: 1;
}

.ke-bottom-item + .ke-bottom-item {
  margin-left: 20px;
}

.ke-bottom-title {
  position: relative;
  height: 26px;
}

.ke-bottom-title span {
  position: absolute;
  left: 1px;
  top: 5px;
  font-size: 26px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  line-height: 35px;
}

.ke-bottom-comment {
  padding: 20px;
  height: 454px;
  background: #FFFFFF;
  box-shadow: 0px 6px 22px 0px rgba(169,169,169,0.2);
  overflow-y: auto;
  margin-top: 45px;
}

.ke-bottom-comment .item {
  display: flex;
}

.ke-bottom-comment .item + .item {
  margin-top: 41px;
}

.ke-bottom-comment .item .head {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  flex-shrink: 0;
}

.ke-bottom-comment .item .name {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #7D808A;
  line-height: 23px;
  margin-top: 1px;
}

.ke-bottom-comment .item .desc {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 21px;
  margin-top: 8px;
}

.ke-bottom-help {
  height: 142px;
  background: #FFFFFF;
  box-shadow: 0px 6px 22px 0px rgba(169,169,169,0.2);
  position: relative;
  padding: 0 21px 0 22px;
  display: flex;
  margin-top: 30px;
}

.ke-bottom-help::after {
  content: '';
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
  width: 72px;
  height: 2px;
  background: #387FFC;
}

.ke-bottom-help .icon-help {
  width: 52px;
  height: 48px;
  margin-top: 45px;
  margin-right: 26px;
}

.ke-bottom-help .title {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 24px;
  margin-top: 24px;
}

.ke-bottom-help .desc {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #7D808A;
  line-height: 24px;
  margin-top: 6px;
  white-space: pre-line;
}

.ke-bottom-help .idea {
  width: 142px;
  height: 33px;
  background: #FFFFFF;
  border: 1px solid #E7E7E7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #7D808A;
  margin-top: 69px;
  cursor: pointer;
}

.ke-bottom-help .idea img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.ke-bottom-help .icon-earphone {
  width: 56px;
  height: 53px;
  margin-right: 26px;
  margin-top: 45px;
}

.ke-bottom-help .phone {
  margin-top: 8px;
  margin-bottom: 2px;
  font-size: 24px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  line-height: 24px;
}

.ke-bottom-help .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 41px;
}

.ke-bottom-help .contact .time {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #7D808A;
  line-height: 16px;
}

.ke-bottom-help .contact .btn {
  margin-top: 12px;
  width: 218px;
  height: 33px;
  background: #387FFC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
}

.ke-bottom-help .contact .btn .icon {
  width: 19px;
  height: 20px;
  margin-right: 6px;
}

.ke-bottom-help .contact .btn .code {
  width: 183px;
  height: 191px;
  position: absolute;
  left: 18px;
  top: 7px;
  transform: translateY(-100%);
  padding: 27px 28px 38px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

.ke-bottom-help .contact .btn:hover .code {
  opacity: 1;
}

.ke-bottom-question {
  height: 454px;
  padding: 20px;
  background: #FFFFFF;
  box-shadow: 0px 6px 22px 0px rgba(169,169,169,0.2);
  margin-top: 45px;
}

.ke-bottom-question .item {
  display: flex;
  flex-direction: column;
}

.ke-bottom-question .item + .item {
  margin-top: 20px;
}

.ke-bottom-question .item .icon {
  width: 17px;
  height: 16px;
  margin-right: 8px;
}

.ke-bottom-question .item .title {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 24px;
}

.ke-bottom-question .item .desc {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #7D808A;
  line-height: 24px;
  margin-top: 9px;
}

.ke-bottom-question .item .option {
  display: flex;
  margin: 2px 0;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #7D808A;
  line-height: 24px;
}

.ke-bottom-question .item .option .status {
  width: 52px;
  height: 20px;
  background: #F4F4F4;
  border-radius: 8px;
  flex-shrink: 0;
  margin-right: 8px;
  text-align: center;
  line-height: 20px;
  margin-top: 2px;
}

.line__3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* 新版头部 */
.header-items {
  display: flex;
  align-items: center;
}

.header-items .item {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 21px;
  padding: 6px 0;
  margin-right: 40px;
}

.header-items .item.active {
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387FFC;
  border-bottom: 3px solid #217DFF;
}

/* end */

.live-list-title {
  font-size: 26px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  line-height: 35px;
  padding: 50px 0 30px 0;
}

.live-field {
  height: 376px;
  display: flex;
  background: #FFFFFF;
}

.live-field .left-box {
  width: 620px;
  height: 376px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  flex-shrink: 0;
}

.live-field .left-box .title {
  /* margin-top: 111px; */
  margin-top: 30px;
  font-size: 30px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 40px;
}

.live-field .left-box .desc {
  margin-top: 14px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 21px;
  display: flex;
}

.live-field .left-box .desc span + span {
  margin-left: 20px;
}

.live-field .left-box .btns {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.live-field .left-box .btns .btn {
  width: 158px;
  height: 40px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
}

.live-field .left-box .btns .btn.btn1 {
  border: 1px solid #FFFFFF;
}

.live-field .left-box .btns .btn.btn2 {
  margin-left: 20px;
  background: linear-gradient(98deg, #FF9C00 0%, #F96006 100%);
}

.live-field .left-box .teacher {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  margin-top: 36px;
}

.live-field .left-box .teacher img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}


.live-field .right-box {
  flex: 1;
}

.live-field .right-box ul {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-left: 40px;
}

.live-field .right-box ul li {
  width: 100%;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-left: 2px solid #E7ECED;
  padding: 0 20px 0 40px;

  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #666666;
  line-height: 16px;
  cursor: pointer;
}

.live-field .right-box ul li.active {
  background: #E8F5FF;
  color: #387FFC;
}

.live-field .right-box ul li:hover {
  background: #E8F5FF;
}

.live-field .right-box ul li::before {
  content: '';
  display: block;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background: #387FFC;
  border: 2px solid #FFFFFF;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-53%, -50%);
}

.live-field .right-box ul li.active::before {
  width: 18px;
  height: 18px;
  background: #387FFC;
}

.live-field .right-box .info1 {
  display: flex;
  flex-direction: column;
}

.live-field .right-box .info1 .status {
  display: flex;
  align-items: center;
  color: #FF8B21;
  margin-bottom: 12px;
  height: 26px;
}

.live-field .right-box .info1 .status img {
  width: 17px;
  height: 17px;
  margin-right: 8px;
}

.live-field .right-box .info2 {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 20px;
}

.live-field .right-box .info2 .tag {
  padding: 0 7px;
  height: 26px;
  background: #F8F8F8;
  border-radius: 4px;
  font-size: 14px;
  align-self: flex-start;
  line-height: 26px;
}

.live-field ul li.active .info2 .tag {
  background: #387FFC;
  color: #FFFFFF;
}

.live-field .right-box .info2 .text {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.live-field .right-box .info2 .text .title {
  color: #333333;
  flex: 1;
}

.live-field .right-box  ul li.active .info2 .text .title{
  color: #387FFC;
}

.live-field .right-box .info2 .text .teacher {
  margin-left: 44px;
}

.live-field .right-box .ke-live-btn {
  width: 70px;
  height: 30px;
  border-radius: 15px;
  margin-left: 68px;
}

.live-list {
  display: flex;
  flex-wrap: wrap;
  margin: -20px 0 0 -20px;
  padding-bottom: 40px;
}

.live-list .ke-live-item {
  margin: 20px 0 0 20px;
}

.dialog-live-sub {
  width: 662px;
  /* height: 606px; */
  background: #FFFFFF;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 30px;
}

.dialog-live-sub .top-box {
  width: 662px;
  height: 87px;
  background: #387FFC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 24px;
  font-family: SourceHanSansSC-Bold, SourceHanSansSC;
  font-weight: bold;
  color: #FFFFFF;
}

.dialog-live-sub .top-box .icon-close {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.dialog-live-sub .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dialog-live-sub .content .icon {
  width: 148px;
  height: 111px;
  margin-top: 30px;
}

.dialog-live-sub .content .title {
  margin-top: 30px;
  font-size: 24px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387FFC;
  line-height: 31px;
}

.dialog-live-sub .content .desc {
  margin-top: 20px;
  white-space: nowrap;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #373737;
  line-height: 24px;
}

.dialog-live-sub .content .time {
  margin-top: 10px;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #A30115;
  line-height: 24px;
}

.dialog-live-sub .content .dialog-ad {
  margin-top: 30px;
  border-top: 1px solid #F0F0F0;
  width: 582px;
}

.dialog-live-sub .content .dialog-ad .ad-tip {
  margin-top: 29px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #387FFC;
  line-height: 19px;
  display: flex;
  align-items: center;
}

.dialog-live-sub .content .dialog-ad .ad-tip::before  {
  content: '';
  display: block;
  background-color: #217DFF;
  width: 2px;
  height: 12px;
  margin-right: 8px;
}

.dialog-live-sub .content .dialog-ad .ad-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.dialog-live-sub .content .dialog-ad .ad-img {
  width: 110px;
  height: 110px;
  margin-right: 20px;
}

.dialog-live-sub .content .dialog-ad .ad-title {
  font-size: 18px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #373737;
  line-height: 25px;
}

.dialog-live-sub .content .dialog-ad .ad-desc {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #7F7F7F;
  line-height: 24px;
  margin-top: 10px;
}

.dialog-live-sub .content .dialog-ad .ad-desc2 {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #7F7F7F;
  line-height: 24px;
  margin-top: 10px;
}

.course-detail-bg {
  width: 100%;
  background-color: #F5F7F9 !important;
  padding-bottom: 30px;
  /* height: 403px; */
}

.course-detail-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 40px;
}

.course-detail-top .box1 {
  width: 1249px;
  display: flex;
}

.course-detail-top .box1 img {
  width: 314px;
  height: 216px;
  margin-right: 30px;
}

.course-detail-top .box1 .title {
  font-size: 28px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 37px;
}

.course-detail-top .box1 .desc {
  margin-top: 20px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 24px;
}

.course-detail-top .box2 {
  width: 1324px;
  height: 227px;
  margin-top: 24px;
  padding: 50px 52px 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-detail-top .box2 .money {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.course-detail-top .box2 .money .tag {
  padding: 0 16px;
  height: 32px;
  background: linear-gradient(270deg, #FF8484 0%, #FF5B5A 100%);
  border-radius: 100px 100px 0px 100px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
}

.course-detail-top .box2 .money .new {
  font-size: 40px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  font-weight: bold;
  color: #E85307;
  line-height: 40px;
  margin-left: 30px;
}

.course-detail-top .box2 .money .old {
  font-size: 16px;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
  color: #999999;
  line-height: 21px;
  margin-left: 30px;
  position: relative;
}

.course-detail-top .box2 .money .old::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  background: #999999;
  transform: translate(0, -50%);
}

.course-detail-top .box2 .ticket {
  margin-left: 30px;
  /* width: 355px; */
  padding: 0 16px;
  height: 32px;
  background: linear-gradient(270deg, #FF8484 0%, #FF5B5A 100%);
  border-radius: 100px 100px 100px 0;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 32px;
  cursor: pointer;
}

.course-detail-top .box2 .info {
  /* width: 554px; */
  padding: 0 20px;
  height: 61px;
  background: #F9F9F9;
  margin-top: 22px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 21px;
}

.course-detail-top .box2 .info .text + .text::before {
  content: '｜';
  color: #ACACAC;
  margin: 0 20px;
}

.course-detail-top .box2 .info .icon {
  width: 20px;
  height: 18px;
  margin-right: 9px;
  margin-left: 59px;
}

.course-detail-top .box2 .info .people {
  color: #387FFC;
}

.course-detail-top .box2 .btns {
  display: flex;
}

.course-detail-top .box2 .btns .btn1 {
  width: 150px;
  height: 50px;
  background: #FCE7E7;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #D9001B;
  cursor: pointer;
  position: relative;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
}

.course-detail-top .box2 .btns .btn1 .icon {
  width: 26px;
  height: 26px;
  margin-right: 5px;
}

.course-detail-top .box2 .btns .btn2 {
  width: 150px;
  height: 50px;
  background: linear-gradient(98deg, #FF9C00 0%, #F96006 100%);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  margin-left: 20px;
  cursor: pointer;
  font-family: 'MicrosoftYaHei', 'PingFangSC-Regular', 'PingFang SC', 'Arial', 'sans-serif' !important;
}

.course-detail-top .box2 .btns .btn2.gray {
  background: #808080;
  font-size: 20px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
}

.course-detail-top .box2 .btns .btn2.blue {
  background: #387FFC;
  font-size: 20px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
}

.course-detail-content {
  margin-top: 2px;
  width: 1280px;
  display: flex;
  justify-content: space-between;
}

.course-detail-content .course-detail-left {
  width: 950px;
  /* height: 997px; */
  background: #FFFFFF;
}

.course-detail-content .course-detail-right {
  width: 300px;
  /* height: 997px; */
  /* background: #FFFFFF; */
}

.learn-detail .course-detail-content .course-detail-right {
  margin-top: -102px;
}

.course-detail-content .detail-html {
  font-size: 18px;
  line-height: 34px;
  color: #000;
  word-break: break-all;
  padding: 30px;
  position: relative;
}

.detail-module .module-content.clearfix {
  margin-left: -20px;
  margin-top: -20px;
}

.detail-module .module-title {
  height: 88px;
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  display: flex;
  align-items: center;
}

.detail-module .module-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: #387FFC;
  margin-right: 9px;
}

.detail-right-module {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-bottom: 20px;
}

.detail-right-module:last-child {
  margin-bottom: 0;
}

/* .detail-right-module + .detail-right-module {
  margin-top: 20px;
} */

.detail-right-module .module-title {
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 21px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.detail-right-module .module-title .more {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #387FFC;
  line-height: 19px;
  font-weight: initial;
}

.detail-right-module .module-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: #387FFC;
  margin-right: 9px;
}

.detail-teacher {
  display: flex;
  cursor: pointer;
}


.detail-teacher + .detail-teacher {
  margin-top: 42px;
}

.detail-teacher .head {
  position: relative;
  margin-right: 16px;
  width: 58px;
  height: 58px;
}

.detail-teacher .head img {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
}

.detail-teacher .head span {
  position: absolute;
  left: 50%;
  top: 41px;
  transform: translate(-50%);
  background: #387FFC;
  border-radius: 12px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 19px;
  padding: 0 10px;
  white-space: nowrap;
}

.detail-teacher .tag {
  margin-left: 12px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid #8FBDFF;
  padding: 0 5px;
  font-size: 14px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: #387FFC;
  line-height: 22px;
}

.detail-teacher .name {
  font-size: 16px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: #333333;
  line-height: 22px;
}

.detail-teacher .desc {
  margin-top: 11px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 21px;
}

.detail-codes {
  width: 262px;
  height: 274px;
  padding: 5px 2px 4px 4px;
  text-align: justify;
}

.detail-codes .code1 img {
  width: 116px;
  height: 116px;
  margin-right: 34px;
}

.detail-codes .code1 span {
  width: 98px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 21px;
  margin-top: 19px;
}

.detail-codes .code2 span {
  width: 98px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 21px;
  margin: 48px 34px 0 12px;
}

.detail-codes .code2 img {
  margin-top: 33px;
  width: 116px;
  height: 116px;
}

.learn-detail-top {
  padding: 37px 0;
  /* height: 248px; */
}

.learn-detail-top .title {
  font-size: 30px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 40px;
}

.learn-detail-top .infos {
  margin-top: 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 21px;
}

.learn-detail-top .infos .info {
  display: flex;
  align-items: center;
}

.learn-detail-top .infos .info .icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.learn-detail-top .infos .info .icon2 {
  width: 20px;
  height: 18px;
  margin-right: 9px;
}

.learn-detail-top .infos .info + .info {
  margin-left: 30px;
}

.learn-detail-top .teachers {
  margin-top: 34px;
  display: flex;
  align-items: center;
  width: 950px;
}

.learn-detail-top .teachers .teacher {
  display: flex;
  align-items: center;
  position: relative;
}

.learn-detail-top .teachers .teacher + .teacher::before {
  content: '';
  display: block;
  width: 1px;
  height: 39px;
  opacity: 0.27;
  background: #FFFFFF;
  margin: 0 20px 0 30px;
}

.learn-detail-top .teachers .teacher .head {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 16px;
}

.learn-detail-top .teachers .teacher .name {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 24px;
  white-space: nowrap;
}

.learn-detail-top .teachers .teacher .title {
  margin-top: 10px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 21px;
}

.learn-detail-right {
  width: 300px;
  background: #FFFFFF;
  padding: 20px 20px 0;
}

.learn-detail-right .line {
  height: 1px;
  background: #F3F3F3;
  margin-top: 30px;
}

.learn-detail-right .learn-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.learn-detail-right .learn-count .count1 {
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387FFC;
  line-height: 21px;
}

.learn-detail-right .learn-count .count2 {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 21px;
}

.learn-detail-right .learn-progress {
  width: 100%;
  height: 18px;
  background: #F3F3F3;
  border-radius: 11px;
  margin-top: 21px;
}

.learn-detail-right .learn-progress .value {
  height: 18px;
  background: #387FFC;
  border-radius: 11px;
}

.learn-detail-right .learn-last {
  margin-top: 20px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 21px;
}

.learn-detail-right .learn-last .orange {
  color: #F9652D;
}

.learn-detail-right .learn-btn {
  margin-top: 51px;
  width: 260px;
  height: 40px;
  background: linear-gradient(98deg, #FF9C00 0%, #F96006 100%);
  box-shadow: 0px 6px 22px 0px rgba(250,104,6,0.27);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
}

.learn-course-intro {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 21px;
}

.course-top-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-top-list .course-top{    
  width: 298px;
  height: 199px;
  padding: 20px;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  align-items: center;
  background: url(/public/img/pc/course-search-banner.png) no-repeat 0 0 / 100% 100%;
  font-size: 26px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 35px;
  text-shadow: 0 2px 4px #4AA4DD;
}

.course-h3 {
  padding: 50px 0 30px;
  font-size: 26px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  line-height: 35px;
}

.course-h3 + .course-list {
  padding-top: 0;
  margin-top: -20px;
}

.course-detail-top .btns .btn1 .code {
  width: 205px;
  height: 241px;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -10px);
  z-index: 66;
  display: none;
  flex-direction: column;
  align-items: center;
}

.course-detail-top .btns .btn1:hover .code {
  display: flex;
}

.course-detail-top .btns .btn1 .code img {
  width: 140px;
  height: 140px;
  margin-top: 30px;
}

.course-detail-top .btns .btn1 .code span {
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #434343;
  line-height: 22px;
  margin-top: 10px;
}

.curriculum-sort {
  padding: 20px 37px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.curriculum-sort .items {
  width: 115px;
  height: 36px;
  background: #F3F3F3;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.curriculum-sort .items .item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 21px;
  cursor: pointer;
}

.curriculum-sort .items .item.active {
  color: #FFFFFF;
  background: #387FFC;
}

.dialog-course-active {
  width: 934px;
  /* height: 490px; */
  background: #FFFFFF;
  border-radius: 22px;
  overflow: hidden;
}

.dialog-course-active .box-top {
  height: 80px;
  background: #387FFC;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dialog-course-active .box-top .title {
  font-size: 24px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 33px;
}

.dialog-course-active .box-top .close {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.dialog-course-active .box-content {
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dialog-course-active .box-content .content-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dialog-course-active .box-content .content-left .img {
  width: 441px;
  height: 127px;
}

.dialog-course-active .box-content .content-left .input {
  width: 500px;
  height: 60px;
  background: #EEEEEE;
  border-radius: 8px;
  margin-top: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #000000;
  text-align: center;
}

.dialog-course-active .box-content .content-left .btn {
  width: 500px;
  height: 60px;
  background: #387FFC;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 30px;
  cursor: pointer;
}

.dialog-course-active .box-content .line {
  width: 1px;
  height: 186px;
  background:#EEEEEE;
}

.dialog-course-active .box-content .content-right {
  font-size: 18px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #505050;
  line-height: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dialog-course-active .box-content .content-right .code {
  width: 253px;
  height: 253px;
  margin-bottom: 16px ;
}

.page-white {
  font-size: 18px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #616060;
  line-height: 25px;
  height: 380px;
}

.page-white .img,
.page-white img {
  width: 236px;
  height: 139px;
  margin-top: 60px;
  margin-bottom: 11px;
}

.assemble-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 59px 50px 30px;
  position: relative;
  background: #FFFFFF;
  border-radius: 13px;
}

.assemble-code .close {
  cursor: pointer;
  width: 18px;
  height: 16px;
  position: absolute;
  right: 28px;
  top: 28px;
}

.assemble-code .title {
  font-size: 26px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 35px;
}

.assemble-code .code {
  width: 244px;
  height: 244px;
  margin-top: 30px;
}

.assemble-code .code div {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 !important;
}

.assemble-code .desc {
  margin-top: 30px;
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #7F7F7F;
  line-height: 24px;
}

.assemble-code .btn {
  width: 400px;
  height: 60px;
  background: #387FFC;
  border-radius: 42px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
  cursor: pointer;
}

.course-detail-top .box2 .btns .btn-f span:first-child {
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
}

.course-detail-top .box2 .btns .btn-f span:last-child {
  font-size: 12px;
  font-family: MicrosoftYaHei;
  line-height: 14px;
  margin-top: 3px;
}

.swiper-recommend {
  width: 1280px;
  height: 390px;
}

.detail-module .module-content .ke-open-list.clearfix {
  margin-left: -20px;
  margin-top: -20px;
}

.swiper-recommend .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 30px;
  width: 40px;
  height: 40px;
  background: url('/public/img/pc/new/icon-swiper-prev.png');
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 30px;
  width: 40px;
  height: 40px;
  background: url('/public/img/pc/new/icon-swiper-prev.png');
  transform: rotateZ(180deg);
}

.swiper-button-next:after, .swiper-button-prev:after {
  content: none;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  display: none;
}

.period-loading {
  padding: 10px 0 30px;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #6F6F6F;
  line-height: 30px;
}

.period-loading img {
  width: 24px;
  height: 24px;
  margin-right: 14px;
}

.qipei-count {
  margin-top: 40px;
  display: flex;
  align-items: center;
  height: 21px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #666666;
  line-height: 21px;
}

.qipei-count img {
  width: 15px;
  height: 14px;
  margin-right: 10px;
}

.qipei-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
}

.qipei-list .item {
  margin: 20px 0 0 20px;
  display: flex;
  flex-direction: column;
  width: 305px;
  height: 365px;
  background: #FFFFFF;
}

.qipei-list .item .img {
  width: 305px;
  height: 172px;
  object-fit: contain;
}

.qipei-list .item .info {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.qipei-list .item .title {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  line-height: 24px;
}

.qipei-list .item .time {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #666666;
  line-height: 20px;
}

.qipei-list .item .desc {
  margin-top: 14px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #989898;
  line-height: 20px;
  height: 40px;
}

.qipei-list .item .btn {
  margin-top: 16px;
  width: 272px;
  height: 32px;
  background: #387FFC;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
}

.qipei-footer {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}

.qipei-zixun {
  width: 841px;
  margin-top: 40px;
}

.qipei-zixun .qipei-zixun-title {
  height: 24px;
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  line-height: 24px;
}

.qipei-zixun .list {
  margin-top: 20px;
  width: 841px;
  background: #FFFFFF;
  padding: 0 30px 30px 21px;
  display: flex;
  flex-direction: column;
}

.qipei-zixun .list .item {
  margin-top: 20px;
  display: flex;
}

.qipei-zixun .list .item .img {
  width: 229px;
  height: 130px;
  margin-right: 20px;
  flex-shrink: 0;
}

.qipei-zixun .list .item .title {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  line-height: 24px;
}

.qipei-zixun .list .item .desc {
  margin-top: 11px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #7F7F7F;
  line-height: 19px;
  -webkit-line-clamp: 3;
  height: 57px;
}

.qipei-zixun .list .item .time {
  margin-top: 18px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 19px;
}

.qipei-form {
  margin-top: 84px;
}

.qipei-form .img {
  width: 410px;
  height: 300px;
}

.qipei-form .form {
  display: flex;
  flex-direction: column;
  padding: 0 20px 30px 20px;
  background: #FFFFFF;
}

.qipei-form .input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  margin-top: 20px;
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
}

.qipei-form .input input {
  width: 291px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #D8D8D8;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  padding: 10px;
}

.qipei-form .input input::placeholder {
  color: #A9A9A9;
}

.qipei-form .btn {
  margin-top: 60px;
  width: 370px;
  height: 50px;
  background: #387FFC;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  cursor: pointer;
}

.qipei-form .tip {
  margin-top: 12px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #A9A9A9;
  line-height: 19px;
  display: flex;
  justify-content: center;
}

.qipei-detail-top {
  display: flex;
  position: relative;
  padding-top: 38px;
  max-height: 389px;
  /* margin-bottom: 30px; */
  overflow: hidden;
}

.qipei-detail-top-bg {
  width: 100%;
  background-color: #F5F7F9 !important;
  padding-bottom: 30px;
  max-height: 389px;
  margin-bottom: 30px;
}

.qipei-detail-top .img {
  width: 388px;
  height: 220px;
  background: #E2E2E2;
  border-radius: 10px;
  border: 2px solid #839EFF;
  margin-right: 27px;
  object-fit: contain;
  flex-shrink: 0;
}

.qipei-detail-top .title {
  font-size: 28px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 37px;
}

.qipei-detail-top .infos {
  display: flex;
  flex-direction: column;
}

.qipei-detail-top .infos .info {
  margin-top: 20px;
  display: flex;
}

.qipei-detail-top .infos .info .key {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #A3ADD0;
  line-height: 24px;
  flex-shrink: 0;
  height: 100%;
}

.qipei-detail-top .infos .info .value {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 24px;
}

.qipei-detail-top .infos .info .ticket {
  /* width: 143px; */
  height: 30px;
  background: #6C7CB4;
  border-radius: 8px;
  border: 1px solid #6C7CB4;
  padding-right: 5px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #EFEFEF;
}

.qipei-detail-top .infos .info .ticket::before {
  content: '票';
  flex-shrink: 0;
  width: 35px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #FF8A00;
  margin-right: 5px;
}

.qipei-detail-top .infos .info .ticket + .ticket::before {
  background-color: #007DFF;
}


.qipei-detail-top .btns {
  margin-top: 20px;
  display: flex;
  flex: 1;
  align-items: flex-end;
}

.qipei-detail-top .btns .btn {
  width: 150px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #FFFFFF;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  cursor: pointer;
}

.qipei-detail-top .btns .btn .icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.qipei-detail-form {
  background: #FFFFFF;
  padding: 10px 30px 30px;
}

.qipei-detail-form .form {
  display: flex;
  flex-direction: column;
}
.qipei-detail-form .input {
  display: flex;
  align-items: center;
  height: 40px;
  margin-top: 20px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 21px;
}

.qipei-detail-form .input input {
  width: 300px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #D8D8D8;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  padding: 10px;
  margin-left: 11px;
}

.qipei-detail-form .input input::placeholder {
  color: #A9A9A9;
}

.bg-line {
  height: 20px;
  background: #F5F7F9;
}

.qipei-detail-form .btn {
  margin-top: 30px;
  margin-left: 79px;
  width: 240px;
  height: 40px;
  background: #387FFC;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  cursor: pointer;
}

.qipei-detail-form .tip {
  margin-top: 30px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 30px;
}

.qipei-detail-form .tip .blue {
  color: #387FFC;
  font-weight: bold;
}

.qipei-download-mask {
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 18px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: #387FFC;
  line-height: 25px;
  z-index: 22;
  cursor: pointer;
}

.qipei-download-mask .mask-bg {
  width: 951px;
  height: 100px;
  background: linear-gradient(180deg, rgba(255,255,255) 0%, #000000 100%);
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 23;
}

.qipei-download-mask .mask-content {
  width: 951px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 24;
  position: absolute;
  left: 0;
  top: 0;
}

.qipei-download-mask img {
  width: 24px;
  height: 25px;
  margin-top: 10px;
}

.qipei-right-zixun {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
}

.qipei-right-zixun .img {
  width: 260px;
  height: 55px;
  margin: 0 auto;
}

.qipei-right-zixun .text {
  width: 260px;
  margin: 10px auto 0;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 21px;
  white-space: pre-line;
}

.qipei-right-zixun .btn-box {
  margin-top: 14px;
  width: 300px;
  height: 76px;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qipei-right-zixun .btn {
  width: 260px;
  height: 36px;
  background: #D8E8FF;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #387FFC;
  cursor: pointer;
}

.qipei-right-zixun .icon-phone {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.qipei-right-zixun .icons {
  display: flex;
  flex-wrap: wrap;
}

.qipei-right-zixun .icon {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #F5F7F9;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 21px;
  cursor: pointer;
}

.qipei-right-zixun .icon img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}

.detail-right-module.np {
  padding: 0;
}

.detail-right-module.np .module-title {
  margin-bottom: 0;
  padding: 20px;
}

.qipei-zixun-list {
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
}

.qipei-zixun-list .item {
  display: flex;
}

.qipei-zixun-list .item + .item {
  margin-top: 20px;
}

.qipei-zixun-list .item img {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  margin-right: 10px;
}

.qipei-zixun-list .item .title {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 21px;
}

.qipei-zixun-list .item .time {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #999999;
  line-height: 19px;
}

.qipei-ask-list {
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
}

.qipei-ask-list .item {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 21px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F5F7F9;
}

.qipei-ask-list .item + .item {
  margin-top: 15px;
}

.qipei-bottom-module {
  width: 1280px;
  margin: 40px auto 0;
}

.qipei-bottom-module .module-title {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  line-height: 24px;
}

.qipei-bottom-module .module-content {
  margin-top: 30px;
}

.qipei-zixun-bottom {
  background: #FFFFFF;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
}

.qipei-zixun-bottom .item {
  height: 40px;
  background: #FFFFFF;
  box-shadow: 0px 6px 22px 0px rgba(255,255,255,0.2);
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 21px;
  width: 565px;
  margin-left: 30px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #F2F2F2;
}

.qipei-zixun-bottom .item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #387FFC;
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translate(0 ,-50%);
}

.qipei-course-imgs {
  display: flex;
}

.qipei-course-imgs .img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 11;
}

.qipei-course-imgs .flex-center {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 12;
}

.qipei-course-imgs .img0 {
  width: 310px;
  height: 444px;
  position: relative;
  flex-shrink: 0;
}

.qipei-course-imgs .img0 .title {
  font-size: 24px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 31px;
}

.qipei-course-imgs .img0 .desc {
  margin-top: 10px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 19px;
  white-space: pre-line;
  text-align: center;
}

.qipei-course-imgs .imgs {
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: -20px;
}

.qipei-course-imgs .imgs .item {
  margin: 20px 0 0 10px;
  width: 182px;
  height: 212px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}

.qipei-course-imgs .imgs .item .icon {
  width: 64px;
  height: 64px;
}

.qipei-course-imgs .imgs .item .title {
  margin-top: 16px;
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 24px;
}

.qipei-course-imgs .imgs .item .desc {
  margin-top: 8px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  line-height: 19px;
  white-space: pre-line;
  text-align: center;
}

.qipei-course-menu {
  margin-top: 40px;
  display: flex;
  height: 561px;
}

.qipei-course-menu .menu {
  display: flex;
  flex-direction: column;
  width: 250px;
  flex-shrink: 0;
  background: #EEEEEE;
  overflow-y: auto;
}

.qipei-course-menu .menu .item {
  height: 51px;
  padding: 0 27px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #3A3A3A;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.qipei-course-menu .menu .item::after {
  content: '';
  width: 210px;
  height: 1px;
  background-color: #DFDFDF;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
}

.qipei-course-menu .menu .item.active::after,
.qipei-course-menu .menu .item:first-child::after  {
  display: none;
}

.qipei-course-menu .menu .item:first-child {
  background: #387FFC !important;
  color: #FFFFFF !important;
}

.qipei-course-menu .menu .item.active {
  background: #FFFFFF;
}

.qipei-course-menu .menu .item .icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  flex-shrink: 0;
}

.qipei-course-menu .content-bg {
  flex: 1;
  background-color: #FFFFFF;
  padding: 20px 0 20px 30px;
  display: flex;
  flex-direction: column;
}

.qipei-course-menu .content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}

.qipei-course-menu .types {
  margin-top: -20px;
  display: flex;
}

.qipei-course-menu .types .items {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.qipei-course-menu .types .item {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #666666;
  line-height: 21px;
  position: relative;
  cursor: pointer;
  margin-right: 40px;
  flex-shrink: 0;
  margin-top: 20px;
}

.qipei-course-menu .types .item.active {
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387FFC;
}

.qipei-course-menu .types .item.active::after {
  content: '';
  width: 17px;
  height: 2px;
  background: #217DFF;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 3px);
}

.qipei-course-menu .list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 -30px;
}


.qipei-course-menu .list .item {
  display: flex;
  flex-direction: column;
  margin: 30px 0 0 30px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 21px;
  width: 304px;
}

.qipei-course-menu .list .item .img {
  width: 304px;
  height: 172px;
  flex-shrink: 0;
  margin-bottom: 17px;
}

.qipei-page-list .page-list {
  justify-content: center;
  margin-bottom: 0;
  margin-top: 30px;
}

.qipei-page-list .page-list .item {
  background: #FFFFFF;
}

.qipei-page-list .page-list .item.current {
  background: #387ffc;
}

.qipei-course-imgs .imgs .item .cover {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background: rgba(56,127,252,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  z-index: 14;
}

.qipei-course-imgs .imgs .item:hover .cover {
  top: 0;
}

.qipei-course-imgs .imgs .item .cover .btn {
  width: 161px;
  height: 40px;
  background: #387FFC;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
}

.qipei-form-dialog {
  width: 605px;
  height: 462px;
  background: #FFFFFF;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.qipei-form-dialog .title {
  height: 80px;
  background: #387FFC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: #FFFFFF;
}

.qipei-form-dialog .close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
}

.qipei-form-dialog .form {
  display: flex;
  flex-direction: column;
  padding: 20px 63px 40px;
}

.qipei-form-dialog .input {
  display: flex;
  align-items: center;
  height: 40px;
  margin-top: 20px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 21px;
}

.qipei-form-dialog .input span {
  flex-shrink: 0;
  width: 68px;
  margin-right: 11px;
  white-space: nowrap;
}

.qipei-form-dialog .input input {
  width: 400px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #D8D8D8;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  padding: 10px;
}

.qipei-form-dialog .input input::placeholder {
  color: #A9A9A9;
}

.qipei-form-dialog .btn {
  margin-top: 32px;
  width: 479px;
  height: 50px;
  background: #387FFC;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #FFFFFF;
  cursor: pointer;
}

.qipei-detail-top .icon-date {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  margin-top: 4px;
}


.qipei-course-menu .types.showhide .morebox {
  display: flex;
}

.qipei-course-menu .types .morebox {
  width: 44px;
  flex-shrink: 0;
  flex-direction: column;
  /* justify-content: center;
  align-items: center; */
  display: none;
  margin-right: 20px;
}


.qipei-course-menu .types .morebox .show-more {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #999999;
  line-height: 19px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 4px;
  margin-top: 40px;
}

.qipei-course-menu .types .morebox .show-more::before {
  content: '展开';
  flex-shrink: 0;
  margin-right: 6px;
}

.qipei-course-menu .types .morebox .show-more::after {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1px solid #999999;
  border-bottom: 1px solid #999999;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin: 0 2px 2px 0;
  flex-shrink: 0;
}

.qipei-course-menu .types.showhide .items {
  height: 98px;
  overflow: hidden;
}

.qipei-course-menu .types.showhide.active .items {
  height: initial;
}

.qipei-course-menu .types.showhide.active .morebox .show-more::before {
  content: '收起';
}

.qipei-course-menu .types.showhide.active .morebox .show-more::after {
  transform: rotate(225deg);
  margin: 2px 2px 0 0;
}